Namespace: DeltaEngine.Commands
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Input.Tests.TouchDualDragTriggerTests
Tests: DeltaEngine.Input.Tests.TouchDragTriggerTests
1 unit tests call DeltaEngine.Commands.DragTrigger.Direction
1 unit tests call DeltaEngine.Commands.DragTrigger.Direction
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Property Value
Type: DragDirectionRemarks
Remarks
Examples
[Test, CloseAfterFirstFrame] public void Create() { var trigger = new TouchDualDragTrigger(); Assert.AreEqual(DragDirection.Free, trigger.Direction); trigger = new TouchDualDragTrigger(new Dictionary<string, string> { { "Direction", "Horizontal" } });
Examples
[Test, CloseAfterFirstFrame] public void Create() { var trigger = new TouchDragTrigger(); Assert.AreEqual(DragDirection.Free, trigger.Direction); trigger = new TouchDragTrigger(new Dictionary<string, string> { { "Direction", "Horizontal" } });
See Also