Step 7: Trigger Animation Event
Last updated
Last updated
Understand how Trigger Animation Event is used for controlling State Modifiers
In Unity Editor, find Window/Animation/Animation and click to open the Animation panel.
Click on the Penguin game object and you can see the following stuff:
If you don't select the game object with Animator, the animations shown in the panel would not be writable and you cannot click the play button to preview it.
Clicking onto 1H_Melee_Attack_Slice_Diagonal, which is the animation clip for Attack1, you should see the following animation:
There are 4 labels on top of the properties. You can click on them, and the inspector will look like:
As the name suggests, these are the Animation Events that are used in Timing Attributes of State Modifiers. The Int in the inspector is for the Begin Index and End Index. We HIGHLY RECOMMEND ordering the events in ascending order, so it will not cause any potential problem.
To add an event, click the circled button:
In the inspector view of the animation event, you need to select TriggerAnimatinoEvent(int):
This method is provided by Model Handler attached to the same object as Animator.
If you added your own Animation Event, remember to set an Int and drag it to the correct order.