diff options
Diffstat (limited to 'Assets/Scripts/Test/SaionjiScript_Anim.cs')
-rw-r--r-- | Assets/Scripts/Test/SaionjiScript_Anim.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Assets/Scripts/Test/SaionjiScript_Anim.cs b/Assets/Scripts/Test/SaionjiScript_Anim.cs index 03d1671a..f7c29d3b 100644 --- a/Assets/Scripts/Test/SaionjiScript_Anim.cs +++ b/Assets/Scripts/Test/SaionjiScript_Anim.cs @@ -14,6 +14,7 @@ public partial class SaionjiScript : MonoBehaviour int Anim_LightAttack5; int Anim_SideKick; int Anim_DashWithSword; + int Anim_SuperKick; void GetAnimHash() { @@ -25,7 +26,11 @@ public partial class SaionjiScript : MonoBehaviour Anim_LightAttack3 = Animator.StringToHash("Light_Attk_3"); Anim_LightAttack4 = Animator.StringToHash("Light_Attk_4"); Anim_LightAttack5 = Animator.StringToHash("Light_Attk_5"); + Anim_SideKick = Animator.StringToHash("SideKick"); + + Anim_SuperKick = Animator.StringToHash("SuperKickCombo"); + Anim_DashWithSword = Animator.StringToHash("Dash_With_Sword"); } |