sphere animation problem

Hello everyone,

I made my sphere movement and it’s works awesome… then I made a animation for it and also add " animation.Play(); " . After that I test my animation and it didn’t work. I mean the sphere wasn’t able to move… any suggestions?

Thanks in advance :)

So, my guess here is that you tried it with the “Animation at start” thing on and it worked. And then you put the animation.Play() in the UPDATE() function, and now you are just telling it everyframe to start to play. So its playing all the time, but only 1 frame and you cant tell. Don’t call it every game frame.

This is just a guess.