From 61d0f70eed6e5636e7a0e056132fbdb9254ac5ce Mon Sep 17 00:00:00 2001 From: Donovan Hutchence Date: Wed, 23 Oct 2024 14:54:01 +0100 Subject: [PATCH] Remove transform from output files (#231) --- src/splat-serialize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/splat-serialize.ts b/src/splat-serialize.ts index 2b80928..a5b8620 100644 --- a/src/splat-serialize.ts +++ b/src/splat-serialize.ts @@ -129,7 +129,7 @@ const serializePly = async (splats: Splat[], write: WriteFunc) => { // count the number of non-deleted splats const totalSplats = countTotalSplats(splats); - const internalProps = ['state']; + const internalProps = ['state', 'transform']; // get the vertex properties common to all splats const propNames = getCommonPropNames(splats).filter((p) => !internalProps.includes(p));