Instanced mesh in blender -> glb -> three.js - is it instanced in three.js?

No the gltf loader will not create an instancedMesh. However the instances geometry is reused within the gltf file, so it’s still a good idea to export instances when you can to reduce the file size. Then when you import a gltf file with three.js, you can loop through the imported scene and re-create the instances with THREE.InstancedMesh.

more in this thread

3 Likes