Step 5: State Modifiers
Last updated
Last updated
Understand State Modifiers
We have talked about Action States and Tags and chained States together, but the game feels wrong. We want a more precise control over the States, so there comes State Modifiers.
State Modifiers works with Action States to modify the action behaviors. They are triggered during the State they are attached to and grants different functionality to the State. For example, controlling animations, activating hitboxes, modifying movement speed, etc. Action States by themselves only form a logic chain of your character, they need State Modifiers for different functions.
Most modifier scripts are named as XXXMod, where Mod stands for MODifier. Each Modifier has a Begin and an End Timing Attribute, which defines when will this mod get activated, as well as the duration of it.
Mod Name A name for you to track what this modifier is for.
Animation Event requires modifying the animations, so let's use By Time in State for now.
Apart from the functionality of modifiers themselves, you can add additional functionality by using the begin & end unity event exposed in the inspector. And a vanilla state modifier is solely for that. But be aware that Unity events are not easy to maintain and debug, please don’t use that for your core logic.
This is only a basic template of a State Modifier. It only triggers Unity Events. Given that Unity Events can be hard to handle, we allow you to extend from State Modifier and create your own modifiers. We also provided template Mods that you can use and learn the implementation pattern.
Timing Attribute Controls when this modifier will be activated. There are two different Modes to select. You can find more details in .