MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / AddTagRecursive

Method AddTagRecursive

Source/Engine/Level/Actor.cpp:630–635  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

628}
629
630void Actor::AddTagRecursive(const Tag& tag)
631{
632 for (const auto& child : Children)
633 child->AddTagRecursive(tag);
634 Tags.AddUnique(tag);
635}
636
637void Actor::RemoveTag(const Tag& tag)
638{

Callers

nothing calls this directly

Calls 1

AddUniqueMethod · 0.80

Tested by

no test coverage detected