Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

AnimationTriggers.highlightedTrigger

public string highlightedTrigger;

Description

Trigger to send to animator when entering highlighted state.

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

public class ExampleClass : MonoBehaviour {

public Animator buttonAnimator; public Button button;

void SomeFunction () { //Sets the button to the highlighted state (Useful when making tutorials). buttonAnimator.SetTrigger (button.animationTriggers.highlightedTrigger); } }