Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Selectable.animator

public Animator animator;

Description

Convenience function to get the Animator component on the GameObject.

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class ExampleClass : MonoBehaviour { private Animator buttonAnimator; public Button button;

void Start() { //Assigns the "buttonAnimator" with the button's animator. buttonAnimator = button.animator; } }

Did you find this page useful? Please give it a rating: