Legacy是旧的版本的动画系统
unity引擎对Legacy动画系统做了优化
所以能使用Legacy系统就用
代码:
1 using UnityEngine; 2 using System.Collections; 3 4 public class AnimationTest : MonoBehaviour { 5 6 Animation animation; 7 8 // Use this for initialization 9 void Start () {10 11 animation = GetComponent(); // 获取 Animation组件12 13 }14 15 // Update is called once per frame16 void Update () {17 18 animation.Play ("walk"); // 播放动画 , 动画名称19 20 }21 }