Skip to content

Commit

Permalink
Remove transform from output files (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
slimbuck authored Oct 23, 2024
1 parent f9696e5 commit 61d0f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/splat-serialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 61d0f70

Please sign in to comment.