Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Selectable.transition

Switch to Manual
public var transition: UI.Selectable.Transition;

Description

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

#pragma strict
// Required when Using UI elements.
public var btnMain;
function SomeFunction() {
	//Sets the main button's transition setting to "Color Tint".
	btnMain.transition = Selectable.Transition.ColorTint;
}