Model explosion

Hello everyone …I want to add the functionality MODEL EXPLOSION in my code…but i don’t know how to make it happen…I want to explode my model in a way shown in this link: https://glb-viewer.blogspot.com/ .
Please help me out…Thanks in advance

To explode model by parts:

  1. Calculate model centre (or just assume (0, 0, 0).)
  2. For each submesh of the model calculate direction vector towards the centre.
  3. Offset each submesh by vectorToCentre.multiplyScalar(offsetScale) (mind, do not recalculate the centre vector.)

To explode model by faces you have a few ways. The easiest is probably creating a dynamic canvas texture and using it as a displacement map for the model and it’s submeshes - then set the displacement scale to some high value (when you paint the canvas black the model will stay together, when you paint it white all faces of the model will be displaced by that value.)

Also, this demo may help you.

Thank you…let me try this…I saw that example but they are using text and I am using an externally loaded gltf model…will there be any change?
I am new in this area that’s why I am asking this…