Should the default animation clip (Animation.clip) automatically start playing on startup.
animation.playAutomatically = true;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { animation.playAutomatically = true; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: animation.playAutomatically = true