Имя события ExecuteCommand или ValidateCommand.
Available commands are:
"Copy", "Cut", "Paste",
"Delete", "SoftDelete", "Duplicate",
"FrameSelected", "FrameSelectedWithLock",
"SelectAll", "Find" and "FocusProjectWindow".
Отправляется только в редакторе.
See Also: EventType.ExecuteCommand, EventType.ValidateCommand.
using UnityEngine;
public class EventCmdNameExample : MonoBehaviour { // Detects commands executed and prints them. void OnGUI() { Event e = Event.current;
if (e.commandName != "") Debug.Log("Command recognized: " + e.commandName); } }