Unity 6.3
0 онлайн 83 гостей 3 в системе
Вход

GUIUtility.keyboardControl

Declaration

public static int keyboardControl;

Описание

controlID элемента управления, который имеет фокус клавиатуры.

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); } }