GameObjectにアタッチされたAnimation (アタッチされていない場合はnull)
animation.Play();
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { animation.Play(); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: animation.Play()