Practice 1: Combo
Last updated
Last updated
Make a combo with Attack1 and Attack2
Understand how to use Tags to change Action States
We've covered the very basic terminologies and structure of PAT, and now it's time to check if you can use what you have learned to create your own stuff. Go ahead and try this assignment: add a new action state that forms a combo of Attack1 and Attack2.
Find SwordMoveset again. Click onto Attack2.
In practice 0, we've implemented that if you left click your mouse, the penguin will always perform Attack2. It is not what we expected. We want to build a combo, which means the first click to trigger Attack 1, and the second click to trigger Attack 2.
Now Attack2 has only one requirement apart from the input: the Idle Tag. As long as there is an Idle Tag in the Tag Container, Attack 2 is valid for triggering.
To fix this, we want to add an additional Require Tag to Attack2 which is only granted while the character is performing Attack1.
Add an inner element to the Require Tags of Attack2, select it to be Chain1.
Now Attack2 requires another Chain1 Tag. If you play the game now, the character will do Attack1 again and Attack2 cannot be triggered, because nothing is granting Chain 1 Tag to the character. We want to make Attack1 grants this tag so Attack2 can form a combo with it.
As all Tags in Main Tags will be added to the Tag Container when that Action State is triggered, we can add Idle & Chain 1 to Attack1's Main Tag. Now it allows Attack2 get triggered.
But there is another problem: you can trigger Attack2 at any time during Attack1.
This makes the game feels weird. The animation of slash in Attack1 might not even started before moving on to Attack2. As a game developer, you want something more fluent. It requires a more precise control over the Action States. That leads us to the next Step: State Modifiers.
For the difference of inner elements and outer elements within Require Tags, you can find more details in Action State .