animation
The Animation attached to this GameObject (Read Only). (Null if there is none attached).
Read time 1 minuteLast updated 2 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public Component animation { get; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Use GetComponent to access the animation void Start() { gameObject.GetComponent<Animation>().Play(); }}