Version: 2017.2

Mode

enumeration

切换到手册

描述

导航模式。由 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"); } } }

变量

None无导航。
Horizontal水平导航。
Vertical垂直导航。
Automatic自动导航。
Explicit显式导航。