Version: 2022.1
言語: 日本語
public static int keyboardControl ;

説明

キーボードフォーカスを持つコントロール ID

using UnityEngine;

public class Example : MonoBehaviour { // Click on the text field to see the id of the control.

string str = "A String!"; void OnGUI() { str = GUILayout.TextField(str, 10); Debug.Log("id: " + GUIUtility.keyboardControl); } }