How to create ply file lod

The project has a 2.4GB PLY file. What tools can be used to generate LOD files?

see here: LOD Streaming | PlayCanvas Developer Site

download splat transform and run the decimate command in the docs its the -F flag

command would be something like npx (or whatever you are using splat transform from assumping npm rn) @playcanvas/splat-transform input.ply -F 30% (amount of splats you want remaining in this case 30% of the original 100% remain i find NanoGS does pairwise merging very well (SOTA) which is what playcanvas uses for lods) output.ply

command structure:

npx @playcanvas/splat-transform (install accessor example)

  • install accessor input.ply -F %X output.ply

simple as that

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.