Xavier
Xavier

Reputation: 9059

Reuse animations with multiple models?

Is it possible to give multiple humanoid models the same animations without starting from scratch each time?

Upvotes: 2

Views: 3309

Answers (1)

James
James

Reputation: 5425

Yes. The process essentially boils down to first having a skeleton that multiple models are based off of. You then wrap the mesh around the skeleton and 'weight' each vertex by the bones in the skeleton that influence movement. You then apply the animation and transformations to the skeleton, not the vertices of the model, and the each of the vertices in the 'skin' move with the skeleton according to the weight given to each bone.

As Tre said, this is called 'Rigging'.

Upvotes: 4

Related Questions