MovementTests ParalyzedCreepDoesNotMove Method Delta Engine Documentation

Namespace: CreepyTowers.Tests.Creeps
Assembly: CreepyTowers.Tests (in CreepyTowers.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ParalyzedCreepDoesNotMove()
Examples

[Test, CloseAfterFirstFrame]
public void ParalyzedCreepDoesNotMove()
{
    creep.State.Paralysed = true;
    AdvanceTimeAndUpdateEntities(1);
    Assert.AreEqual(Vector3D.Zero, creep.Position);
}
See Also