GameObject.animation
var animation: Animation;
Animation animation;
animation as Animation
Description

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

	var other : GameObject; 
	other.animation.Play();
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    public GameObject other;
    void Example() {
        other.animation.Play();
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	public other as GameObject

	def Example() as void:
		other.animation.Play()