blob: 382b3a5d5a4552cfeb443ad708a27de3a32069a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using UnityEngine;
//Player AnimationHandler 记录当前动作状态编号
public class AnimationHandler : MonoBehaviour
{
public int animationState;
private void Start()
{
}
private void Update()
{
}
}
|