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

Script language

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

Selectable.transition

public UI.Selectable.Transition transition;

Description

The type of transition that will be applied to the targetGraphic when the state changes.

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

public class ExampleClass : MonoBehaviour { public Button btnMain;

void SomeFunction() { //Sets the main button's transition setting to "Color Tint". btnMain.transition = Selectable.Transition.ColorTint; } }