To separate your event logic from your UI code, use a manipulator to handle events. Manipulators are state machines that handle user interaction with UI elements. They store, register, and unregister event callbacks. A manipulator streamlines setting up that user interaction, so you don’t have to handle each callback one by one. To handle events, use or inherit from one of the manipulators that UI Toolkit supports.
To create and use a manipulator:
The following table lists the supported manipulator classes:
マニピュレーター | 継承 | 説明 |
---|---|---|
Manipulator |
提供されるすべてのマニピュレーターの基本クラスです。 | |
KeyboardNavigationManipulator |
Manipulator |
デバイス固有の入力イベントを、キーボードによるより高度なナビゲーション操作に変換する処理を行います。 |
MouseManipulator |
Manipulator |
マウス入力を処理します。起動時フィルターのリストを持っています。 |
ContextualMenuManipulator |
MouseManipulator |
ユーザーがマウスの右ボタンをクリックするか、キーボードのメニューキーを押すと、コンテキストメニューが表示されます。 |
PointerManipulator |
MouseManipulator |
ポインターの入力を処理します。起動時フィルターのリストを持っています。 |
Clickable |
PointerManipulator |
Tracks mouse events on an element, and identifies when a click occurs, which is both a pointer press and release on the same element. |
The following examples demonstrate how to use manipulators to handle events. They do the following:
PointerManipulators
class, which handles mouse input.activators
list to specify the conditions that activate the manipulator. For example, to activate the manipulator when the user clicks the left mouse button, add
ManipulatorActivationFilter
to the activators
list with the button
field set to MouseButton.LeftMouse
.target
property to access the element that the manipulator is attached to.RegisterCallbacksOnTarget
and UnregisterCallbacksFromTarget
methods to register and unregister the event callbacks.The following example creates a manipulator that moves an element when you click and drag it:
[!code-cs[(Modules/UIElements/Tests/UIElementsExamples/Assets/ui-toolkit-manual-code-examples/manipulator/ExampleDragger.cs)]
The following example creates a manipulator that resizes an element when you drag it:
[!code-cs[(Modules/UIElements/Tests/UIElementsExamples/Assets/ui-toolkit-manual-code-examples/manipulator/ExampleResizer.cs)]
To add a manipulator to an element, use the AddManipulator
method. To remove a manipulator from an element, use the RemoveManipulator
method.
The following example adds and removes the ExampleDragger
to a VisualElement
:
// Create a VisualElement.
var myElement = new VisualElement();
// Add manipulators to the VisualElement.
myElement.AddManipulator(new ExampleDragger());
// Remove manipulators from the VisualElement.
myElement.RemoveManipulator<ExampleDragger>();
The following example adds the ExampleResizer
to a VisualElement
:
var box = new VisualElement()
{
style =
{
left = 100,
top = 100,
width = 100,
height = 100,
backgroundColor = Color.red
},
pickingMode = PickingMode.Position,
};
box.AddManipulator(new ExampleResizer());
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.