Input |
public abstract class InputEventsSource
The InputEventsSource type exposes the following members.
Name | Description | |
---|---|---|
CustomData | Gets or sets any custom data that can be used in event handlers. | |
Name | Gets or sets the optional name of this InputEventsSource. |
Name | Description | |
---|---|---|
IsMySceneNode | Method that is called from InputEventsManager to check if this EventSource contains hitSceneNode | |
OnBeginPointerDrag | OnBeginPointerDrag | |
OnEndPointerDrag | OnEndPointerDrag | |
OnPointerClicked | OnPointerClicked | |
OnPointerDoubleClicked | OnPointerDoubleClicked | |
OnPointerDrag | OnPointerDrag | |
OnPointerEntered | OnPointerEntered | |
OnPointerExited | OnPointerExited | |
OnPointerMoved | OnPointerMoved | |
OnPointerPressed | OnPointerPressed | |
OnPointerUp | OnPointerUp | |
OnPointerWheelChanged | OnPointerWheelChanged |
Name | Description | |
---|---|---|
BeginPointerDrag | Occurs when the user begins to drag the subscribed EventSource. | |
EndPointerDrag | Occurs when the user ends dragging the subscribed EventSource. | |
PointerClicked | Occurs when the user clicks on the subscribed EventSource. The PressedButtons in the event args defines the clicked buttons (and not current state of buttons - click occurs when the button is pressed and then released). | |
PointerDoubleClicked | Occurs when the user double-clicks on the subscribed EventSource. The PressedButtons in the event args defines the clicked buttons (and not current state of buttons - click occurs when the button is pressed and then released). | |
PointerDrag | Occurs when the user is dragging the subscribed EventSource. | |
PointerEntered | Occurs when the pointer or mouse enters the subscribed EventSource. | |
PointerExited | Occurs when the pointer or mouse leaves the subscribed EventSource. | |
PointerMoved | Occurs when the pointer or mouse moves on the subscribed EventSource. | |
PointerPressed | Occurs when the pointer is over the subscribed EventSource and a pointer button is pressed. | |
PointerReleased | Occurs when the pointer is over the subscribed EventSource and a pointer button is released. | |
PointerWheelChanged | Occurs when the pointer wheel is used on the subscribed EventSource. |