Entity RemoveTag Method Delta Engine Documentation

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

public void RemoveTag(
	string tag
)
Remarks

Tests: DeltaEngine.Tests.Entities.EntityTests
Examples

2 unit tests call DeltaEngine.Entities.Entity.RemoveTag(System.String)
[Test]
public void ToStringWithTags()
{
    entityWithTags.ClearTags();
    Assert.AreEqual("MockEntity", entityWithTags.ToString());
    entityWithTags.AddTag("Empty");
    entityWithTags.AddTag("Empty");
    entityWithTags.AddTag("Entity");
    Assert.AreEqual("MockEntity Tags=Empty, Entity", entityWithTags.ToString());
    entityWithTags.RemoveTag("Entity");
    Assert.AreEqual("MockEntity Tags=Empty", entityWithTags.ToString());
    entityWithTags.ClearTags();
    Assert.AreEqual("MockEntity", entityWithTags.ToString());
}
[Test]
public void RemoveTag()
{
    entityWithTags.RemoveTag(Tag1);
    Assert.IsFalse(entityWithTags.ContainsTag(Tag1));
    Assert.IsTrue(entityWithTags.ContainsTag(Tag2));
    Assert.AreEqual(0, entities.GetEntitiesWithTag(Tag1).Count);
}
See Also