How do I have an actor continuously rotate (infinately)?
Hello Everybody,
I have some stars in my game, and I want them to be able to rotate for as long as the player is on the level.
Thanks,
Jack McGraw
I have some stars in my game, and I want them to be able to rotate for as long as the player is on the level.
Thanks,
Jack McGraw
Best Answer
-
tenrdrmer Posts: 9,934
Do
When self.angle = 0
interpolate self.angle to 360
If you want it to rotate the opposite direction use -360
adjust your rotate speed by adjusting the duration.
Answers