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

EventModifiers.Control

Описание

Удерживается ли клавиша Control?

Дополнительные ресурсы: ,Event.control,.

using UnityEngine;
using UnityEngine.UIElements;

[RequireComponent(typeof(UIDocument))] public class Example : MonoBehaviour { void OnEnable() { var button = new Button(); button.RegisterCallback<ClickEvent>(e => { if ((e.modifiers & EventModifiers.Control) != 0) { if ((e.modifiers & EventModifiers.Shift) != 0) Debug.Log("Control+Shift is pressed"); else Debug.Log("Control is pressed"); } else if ((e.modifiers & EventModifiers.Shift) != 0) { Debug.Log("Shift is pressed"); } }); GetComponent<UIDocument>().rootVisualElement.Add(button); } }