Version: 2017.2
public float length ;

描述

动画长度,单位为秒。(只读)

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Animation anim; IEnumerator Start() { anim = GetComponent<Animation>(); anim.Play(); yield return new WaitForSeconds(anim.clip.length); } }