TilemapTests TestUpdate Method Delta Engine Documentation

Namespace: DeltaEngine.Scenes.Tests.Controls
Assembly: DeltaEngine.Scenes.Tests (in DeltaEngine.Scenes.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void TestUpdate()
Examples

[Test]
public void TestUpdate()
{
    var tilemap = new ColoredLogoTilemap(World, Map);
    tilemap.DrawArea = Rectangle.One;
    tilemap.State.DragStart = new Vector2D(10.5f, 10.5f);
    tilemap.State.DragEnd = new Vector2D(0.5f, 0.5f);
    tilemap.Update();
    Assert.AreEqual(new Vector2D(-10, -10), tilemap.State.DragDelta);
}
See Also