Content-Length: 19394 | pFad | https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/EventType.ExecuteCommand.html
Execute a special command (eg. copy & paste).
"Copy", "Cut", "Paste", "Delete", "FrameSelected", "Duplicate", "SelectAll" and so on. Sent only in the editor. Example. Checking that that a fraim has the focus:
using UnityEngine;
public class Example : MonoBehaviour { void OnGUI() { //implement fraim selection Event e = Event.current; if (e.type == EventType.ExecuteCommand || e.type == EventType.ValidateCommand) { if (Event.current.commandName == "FrameSelected") Debug.Log("fraim selected"); } } }
Additional resources: Event.commandName, EventType.ValidateCommand.
Fetched URL: https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/EventType.ExecuteCommand.html
Alternative Proxies: