GUIUtility.hotControlstatic var hotControl : intDescriptionThe controlID of the current hot control. The hot control is one that is temporarily active. When the user mousedown's on a button, it becomes hot.
JavaScripts
// Click on the button to see the id
function OnGUI() { GUILayout.Button("Press Me!"); Debug.Log("id: " + GUIUtility.hotControl); } using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void OnGUI() { GUILayout.Button("Press Me!"); Debug.Log("id: " + GUIUtility.hotControl); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def OnGUI(): GUILayout.Button('Press Me!') Debug.Log(('id: ' + GUIUtility.hotControl)) |
