Version: 2020.1
言語: 日本語

ManipulatorActivationFilter

struct in UnityEngine.UIElements

マニュアルに切り替える

説明

Used by manipulators to match events against their requirements.

using UnityEditor;
using UnityEngine;
using UnityEngine.UIElements;

public class ClickableTest { public void CreateClickable() { var clickable = new Clickable(() => { Debug.Log("Clicked!"); }); clickable.activators.Add(new ManipulatorActivationFilter { button = MouseButton.LeftMouse }); clickable.activators.Add(new ManipulatorActivationFilter { button = MouseButton.RightMouse, clickCount = 2, modifiers = EventModifiers.Control }); } }

変数

buttonThe button that activates the manipulation.
clickCountNumber of mouse clicks required to activate the manipulator.
modifiersAny modifier keys (ie. ctrl, alt, ...) that are needed to activate the manipulation.

Public 関数

MatchesChecks whether the current mouse event satisfies the activation requirements.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961