BodyTests ChangePosition Method Delta Engine Documentation

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

public void ChangePosition()
Examples

[Test, CloseAfterFirstFrame]
public void ChangePosition()
{
    body.Position = Vector2D.One;
    Assert.AreEqual(Vector2D.One, body.Position);
}
See Also