How to scale down the model?

Hello, I cannot find how to scale down my model in gltf. This is the code, so I am sure I am just missing a line of code that can do that…Render.txt (2.2 KB)

are you trying to scale only one item in the gltf?
Scaling the whole scene works for me:
gltf.scene.scale.set(0.5, 0,5, 0.5);

1 Like

Scaling the whole scene is less recommend IMO, because this will affect all the other models he may be adding, and the scene model is not necessarily at the same scale as everything.

A better approach would be to create an empty object under scene, scale it, and put the imported scene under the scaling object.

Also @danieliuse I think it’s best if you go over threejs documentations, three is really, really well documented and should be the first place to look

https://threejs.org/docs/