Hello,
So I’ve been searching around haven’t found anything about being able to play the animation that I want.
So when the user presses a button in my game, it will play half of the animation and STAY paused at the end of the half of the animation. But if the user is to release the button, it will then play the next the next half of the animation.
So I’ll give it a go:
function Update()
{
if(Input.GetKeyDown(KeyCode.Q))
{
animation.Play(“LBehind”,PlayMode.StopAll);
}
else(Input.GetKeyUp
animation.Play(“LBehind”
}
I already know it’s wrong… If anyone can help me, I’d really appreciate it.