Version: 2017.2

説明

ナビゲーションモード。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明示的なナビゲーション