MeshoptCompression with quantize #1601
-
In the
However, in the await document.transform(
reorder({encoder: MeshoptEncoder}),
quantize()
); Should I perform |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @long-duc-nguyen-skymavis — the I don't expect the order in which reorder() and quantize() are called should matter much, but feel free to try both ways and compare. |
Beta Was this translation helpful? Give feedback.
Hi @long-duc-nguyen-skymavis — the
reorder()
function is not the compression, it's only sorting the vertices to improve compression and performance later. The reorder() and quantize() functions modify the in-memory representation of the scene, compression (whether it's Meshopt or Draco) will be applied only when writing to disk.I don't expect the order in which reorder() and quantize() are called should matter much, but feel free to try both ways and compare.