So im a beginer. I want to create a animation of my guy breathing but the animation is going to fast and becouse of that the animation looks horrible. Please help!
You have 2 ways:
Via code:
private Animator anim;
private void Start()
{
anim = GetComponent<Animator>();
anim.speed = 0.5f; //speed is normalized, so from 0 to 1 for normal speed or higher for acceleration
}
Or in inspector, when you select an animation state, you can change the speed of that specific state, but is better leaving always states at speed 1 and dealing with them via code.
Go on the Animation tab, find the number box next to the word ‘Samples’ and reduce the number in size to slow down the animation.