Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Animation Switch to Component   

Animation.playAutomatically  

var playAutomatically : boolean

Description

Should the default animation clip (Animation.clip) automatically start playing on startup.

JavaScripts
animation.playAutomatically = true;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Awake() {
animation.playAutomatically = true;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Awake():
animation.playAutomatically = true