Making a platform start falling once stepped on using a Trigger to move the animation from one state to another
In many cases, we don’t want an animation to begin until some condition has been met, or some event has occurred. In these cases, a good way to organize an Animator Controller is to have two animation states (clips) and a Trigger on the transition between the clips. We can use code to detect when we want the animation to start playing, and at that time, we send the Trigger message to the Animator Controller, causing a Transition to start.
In this recipe, we’ll create a water platform block in our 2D platform game. Such blocks will begin to slowly fall down the screen as soon as they have been stepped on, and so the player must keep on moving; otherwise, they’ll fall down the screen with the blocks too!
Figure 8.32: Example of a falling platform
Getting ready
This recipe builds on the previous one, so make a copy of that project and...