diff options
author | chai <chaifix@163.com> | 2020-10-18 00:48:13 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-10-18 00:48:13 +0800 |
commit | c83b9abffe8988f9322a027b7fefd68e7f3fa6ba (patch) | |
tree | d29bd71fd485e9e4d5aa1ae68a7af2501b641b9d /Assets/Scripts/Test/SaionjiScript_Anim.cs | |
parent | fd4f77ee3621bef2ce91ee6584ca9a2dc5064f96 (diff) |
+dash 动作
Diffstat (limited to 'Assets/Scripts/Test/SaionjiScript_Anim.cs')
-rw-r--r-- | Assets/Scripts/Test/SaionjiScript_Anim.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Assets/Scripts/Test/SaionjiScript_Anim.cs b/Assets/Scripts/Test/SaionjiScript_Anim.cs index c0ebb95f..03d1671a 100644 --- a/Assets/Scripts/Test/SaionjiScript_Anim.cs +++ b/Assets/Scripts/Test/SaionjiScript_Anim.cs @@ -11,7 +11,9 @@ public partial class SaionjiScript : MonoBehaviour int Anim_LightAttack2; int Anim_LightAttack3; int Anim_LightAttack4; - int Anim_LightAttack5; + int Anim_LightAttack5; + int Anim_SideKick; + int Anim_DashWithSword; void GetAnimHash() { @@ -23,6 +25,8 @@ 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_DashWithSword = Animator.StringToHash("Dash_With_Sword"); } } |