ClothCreepStateChangerTests ApplyFireThenWaterToClothCreep 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 ApplyFireThenWaterToClothCreep()
Examples

[Test, CloseAfterFirstFrame]
public void ApplyFireThenWaterToClothCreep()
{
    ClothCreepStateChanger.ChangeStatesIfClothCreep(TowerType.Fire, creep);
    ClothCreepStateChanger.ChangeStatesIfClothCreep(TowerType.Water, creep);
    Assert.IsFalse(creep.State.Fast);
}
See Also