State Modifier
Last updated
Last updated
State Modifiers are attached to Action States. They are triggered during the state and grants different functionality to Action States. 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.
A name for you to track what this modifier is for.
Controls when this modifier will be activated.
There are basically two different Modes can select:
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.
When the character is in an Action State, it will hold all tags listed in the State’s Main Tag. Using this mod, it allows an Action State to have extra Tags for further State transition.
This Mod plays an animation state in the model's animator and uses crossfade to create transitions.
Drag in the Animation Controller that contains the animations.
Choose the layer that contains your desired Animation.
Name of the State that contains the desired Animation state inside the Animator.
The duration of crossfade when the animation starts.
Fade out duration, and the target is a state called “Empty” in the same layer. This is helpful because the new state might be playing animation in a different layer.
Clicking on it brings you to the location of selected clip
The animator will not try to fade to “Empty” automatically when state end.
Action State will auto exit if the Unity Animation Play Time reaches 1, helpful for many actions like attack, roll.