Drag events with Mouse.
View code on GitHub
Inheritance Hierarchy
DeltaEngine.Entities Entity
DeltaEngine.Commands Trigger
DeltaEngine.Commands InputTrigger
DeltaEngine.Commands DragTrigger
DeltaEngine.Input MouseDragTrigger
Namespace: DeltaEngine.Input
Assembly: DeltaEngine.Input (in DeltaEngine.Input.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The MouseDragTrigger type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | MouseDragTrigger(Dictionary String, String ) | Initializes a new instance of the MouseDragTrigger class |
![]() | MouseDragTrigger(MouseButton, DragDirection) | Initializes a new instance of the MouseDragTrigger class |
Methods
Name | Description | |
---|---|---|
![]() | Add T | (Inherited from Entity.) |
![]() | AddTag | (Inherited from Entity.) |
![]() | ClearTags | (Inherited from Entity.) |
![]() | Contains T | (Inherited from Entity.) |
![]() | ContainsBehavior T | (Inherited from Entity.) |
![]() | ContainsTag | (Inherited from Entity.) |
![]() | Deactivate | (Inherited from Entity.) |
![]() | Dispose | (Inherited from Entity.) |
![]() | Get T |
Gets a specific component, derived classes can return faster cached values (e.g. Entity2D)
View code on GitHub (Inherited from Entity.) |
![]() | GetActiveBehaviors | (Inherited from Entity.) |
![]() | GetComponentsForSaving | (Inherited from Entity.) |
![]() | GetOrDefault T | (Inherited from Entity.) |
![]() | GetTags | (Inherited from Entity.) |
![]() | HandleWithMouse | |
![]() | Invoke | (Inherited from Trigger.) |
![]() | IsDragDirectionCorrect | (Inherited from DragTrigger.) |
![]() | Remove T | (Inherited from Entity.) |
![]() | RemoveTag | (Inherited from Entity.) |
![]() | Set | (Inherited from Entity.) |
![]() | SetComponents | (Inherited from Entity.) |
![]() | Start T | (Inherited from Entity.) |
![]() | StartInputDevice | (Overrides InputTrigger StartInputDevice .) |
![]() | Stop T | (Inherited from Entity.) |
![]() | ToString | (Inherited from Entity.) |
![]() | Update | (Inherited from Trigger.) |
Fields
Name | Description | |
---|---|---|
![]() | components | (Inherited from Entity.) |
![]() | Invoked | (Inherited from Trigger.) |
Properties
Name | Description | |
---|---|---|
![]() | Button | |
![]() | Direction | (Inherited from DragTrigger.) |
![]() | DoneDragging | (Inherited from DragTrigger.) |
![]() | IsActive | (Inherited from Entity.) |
![]() | IsPauseable | (Inherited from Trigger.) |
![]() | Movement | (Inherited from DragTrigger.) |
![]() | NumberOfComponents | (Inherited from Entity.) |
![]() | StartPosition | (Inherited from DragTrigger.) |
![]() | UpdatePriority | (Inherited from Entity.) |
![]() | WasInvokedThisTick | (Inherited from Trigger.) |
Remarks
Examples
[Test] public void DragMouseToCreateRectangles() { DragToCreateRectangles(new MouseDragTrigger()); }
[Test, CloseAfterFirstFrame] public void Create() { Assert.AreEqual(MouseButton.Left, new MouseDragTrigger().Button); Assert.AreEqual(MouseButton.Right, new MouseDragTrigger(MouseButton.Right).Button); }
[Test, CloseAfterFirstFrame] public void CreateFromAttributes() { Assert.AreEqual(MouseButton.Left, new MouseDragTrigger(new Dictionary<string, string>()).Button); Assert.AreEqual(MouseButton.Right, new MouseDragTrigger(new Dictionary<string, string> { { "Button", "Right" } }).Button); }
See Also