Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Mode

enumeration

Cambiar al Manual

Descripción

Navigation mode. Used by Selectable.

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

public class ExampleClass : MonoBehaviour { public Button button;

void Start () { //Set the navigation to the mode "Vertical". if (button.navigation.mode == Navigation.Mode.Vertical) { Debug.Log("The button's navigation mode is Vertical"); } } }

Variables

NoneNo navigation.
HorizontalHorizontal Navigation.
VerticalVertical navigation.
AutomaticAutomatic navigation.
ExplicitExplicit navigaion.