Hello,
On the client side, I can use mergeGeometries to merge the glb files to reduce draw calls as desired. By using draco and gltfloader to create geometries then merge.
But it will take the user’s time. I want to run it on the server side, when the user loads the link, just download the combined file for them.
Currently, my process on the server side is to convert the fbx file to glb, then compress it with draco.
Now I want to merge those files into one file like the client side, what should I do?
Should I create the merge before compressing draco, or maybe merge with even draco?
Thank you very much