summaryrefslogtreecommitdiff
path: root/_ActiveRagdoll/Handlers/AnimationHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to '_ActiveRagdoll/Handlers/AnimationHandler.cs')
-rw-r--r--_ActiveRagdoll/Handlers/AnimationHandler.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/_ActiveRagdoll/Handlers/AnimationHandler.cs b/_ActiveRagdoll/Handlers/AnimationHandler.cs
index 382b3a5..437a8dd 100644
--- a/_ActiveRagdoll/Handlers/AnimationHandler.cs
+++ b/_ActiveRagdoll/Handlers/AnimationHandler.cs
@@ -3,7 +3,14 @@ using UnityEngine;
//Player AnimationHandler 记录当前动作状态编号
public class AnimationHandler : MonoBehaviour
{
- public int animationState;
+ /*
+ 0 Stand
+ 1 Sprint
+ 2 Run
+ 3 Jump
+ */
+
+ public int animationState;
private void Start()
{