Skip to content

Commit

Permalink
Adjust TileCompressionPlugin defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed Dec 21, 2024
1 parent fa90aab commit ac10c1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ Available options are as follows:

// Whether to compress and quantize attributes.
compressIndex: true,
compressNormals: true,
compressUvs: true,
compressNormals: false,
compressUvs: false,
compressPosition: false,

// The TypedArray type to use when compressing attributes.
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/three/TileCompressionPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ export class TileCompressionPlugin {

// whether to compress certain attributes
compressIndex: true,
compressNormals: true,
compressUvs: true,
compressNormals: false,
compressUvs: false,
compressPosition: false,

// the TypedArray type to use when compressing the attributes
Expand Down

0 comments on commit ac10c1d

Please sign in to comment.