summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Test/SaionjiScript_Anim.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-18 08:22:25 +0800
committerchai <chaifix@163.com>2020-10-18 08:22:25 +0800
commit3e8ab8f4b98086e9a1a4b2fd1221e86e9abceea4 (patch)
tree2adcf957bfb97362c144de5a44bc7be5dbd09356 /Assets/Scripts/Test/SaionjiScript_Anim.cs
parentc83b9abffe8988f9322a027b7fefd68e7f3fa6ba (diff)
+gamepad
+superkick combo
Diffstat (limited to 'Assets/Scripts/Test/SaionjiScript_Anim.cs')
-rw-r--r--Assets/Scripts/Test/SaionjiScript_Anim.cs5
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");
}