-
I'm looking to implement a LOD system using meshoptimizer/gltfpack and for each LOD I specify distance value and a simplification threshold that I pass to gltfpack. The meshes this generates seem to be the same as the ones with no threshold supplied. I imagine that there's probably some extra flag I need to set. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In addition to understanding why simplification doesn't simplify based on above, you can try |
Beta Was this translation helpful? Give feedback.
-si 0.5
specifies the target simplification ratio. However, several additional factors may restrict simplification in practice:-v
) output; the closer number of vertices is to number of triangles times three, the more it is a problem (eve…