Practice 0: Add an Input Tag
Last updated
Last updated
Use Input Tag to allow the penguin performing other attacks.
You might have noticed this: there exists two attack objects in the move set prefab.
Attack 2 and Attack 1 are almost identical, but only Attack 1 is triggered when you left click your mouse.
The reason is simple: Attack 2 does not have an Input Tag. No matter what button you clicked, it will never be triggered.
So now let's try to add an Input Tag to this State.
Select light attack Input Tag from inspector.
Now run the game. You should find the penguin attacking with a new animation when you left click / press west button.
Now one action state is overriding another. We don't really want that. We want the two action states form a combo that are triggered with a fixed order. When you left click twice, you should always see the penguin performing Attack1 first, then Attack2.
In the next steps, we will explain how to accomplish that.