Version: 2017.2
public AnimationClip clip ;

설명

The default animation.

using UnityEngine;
using System.Collections;

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