Constructor Dragger
Dragger(Action, Action<Dragger>, Action<Dragger>, Action<Dragger>)
Construct a Dragger manipulator.
Declaration
public Dragger(Action clickHandler, Action<Dragger> dragHandler, Action<Dragger> upHandler, Action<Dragger> downHandler = null)
Parameters
| Type | Name | Description |
|---|---|---|
| Action | clickHandler | A callback invoked when a ClickEvent has been received. |
| Action<Dragger> | dragHandler | A callback invoked during dragging state. |
| Action<Dragger> | upHandler | A callback invoked when a PointerUpEvent has been received. |
| Action<Dragger> | downHandler | A callback invoked when a PointerDownEvent has been received. |