using UnityEngine; //Player AnimationHandler 记录当前动作状态编号 public class AnimationHandler : MonoBehaviour { /* 0 Stand 1 Sprint 2 Run 3 Jump */ public int animationState; private void Start() { } private void Update() { } }