Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Selectable.Select

マニュアルに切り替える
public void Select();

説明

この Selectable を選択します。

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // required when using UI elements in scripts
using UnityEngine.EventSystems;// Required when using Event data.

public class ExampleClass : MonoBehaviour// required interface when using the OnSelect method. { public InputField myInputField;

//Do this OnClick. public void SaveGame () { //Makes the Input Field the selected UI Element. myInputField.Select (); } }