Component.animation

var animation : Animation

Description

The Animation attached to this GameObject (null if there is none attached).

JavaScript
animation.Play();

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
animation.Play();
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
animation.Play()