Animation.playAutomatically Manual     Reference     Scripting  
Scripting > Runtime Classes > Animation
Animation.playAutomatically

var playAutomatically : boolean

Description

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

JavaScript
animation.playAutomatically = true;

using UnityEngine;
using System.Collections;

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

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
animation.playAutomatically = true