- Home /
Animation at the end of the level
Hi! I'm new in animations, so I need help.
Can somebody tell me how to play an already made animation, after collecting all the coins in the level?
Comment
Answer by JayOhhh · Jul 25, 2014 at 07:33 PM
If the animation is already made, just tell it to play in your coin collecting script.
IF (allCoinsCollected) {
// Play end level animation
}
ELSE {
// regular coin collecting logic
}
Your answer
Follow this Question
Related Questions
Distribute terrain in zones 3 Answers
Multiple Cars not working 1 Answer
Sword is Messed Up 1 Answer
How can you code an animation? 1 Answer