Мои Уведомления
Привет, !
Мой Аккаунт Мои Финансы Мои Подписки Мои Настройки Выход
Руководство API скрипты

EventType.ExecuteCommand

Описание

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 frame has the focus:

using UnityEngine; public class Example : MonoBehaviour { void OnGUI() { //осуществить выбор кадра Event e = Event.current; if (e.type == EventType.ExecuteCommand || e.type == EventType.ValidateCommand) { if (Event.current.commandName == "FrameSelected") Debug.Log("frame selected"); } } }

Смотрите так же: Event.commandName, EventType.ValidateCommand.

Вы можете отблагодарить автора, за перевод документации на русский язык. ₽ Спасибо
API скрипты 2021.3