thanks man, im not sure why i cant resize it on my code, anyways, if like in the case of a nested GLF meshes, if i scaled the root, does it scaled the other children as well right?
if i scaled the root, does it scaled the other children as well right?
It does! But note that (as far as I can tell) Box3.setFromObject(...) does not recompute all world matrices, so if scale on a parent has changed since the last time those were recomputed, you may need to use scene.updateWorldMatrix(true) on an ancestor first. The renderer will do this automatically each time it renders, beyond that you want to keep updates to a minimum for scenes with a lot of objects.