Load a specific frame from an animation clip without play it !

hi,

How to make the caracter holding on a specific frame from a specific clip ?

thank.

Set

animation[“clip”].time = desiredTime;
animation[“clip”].speed = 0.0;
animation.Play(“clip”);

You can find DesiredTime through the Animation window; there’s a timeline on the title bar of that window.

thank’s again dude …