public float length ;

설명

Animation length in seconds. (Read Only)

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); } }