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

Method GetChild

Source/Engine/Level/Actor.cpp:449–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447}
448
449Actor* Actor::GetChild(int32 index) const
450{
451 CHECK_RETURN(index >= 0 && index < Children.Count(), nullptr);
452 return Children[index];
453}
454
455Actor* Actor::GetChild(const StringView& name) const
456{

Callers 15

ProcessNodesFunction · 0.45
BakeTransformsFunction · 0.45
GetNextSiblingsMethod · 0.45
GetPreviousSiblingsMethod · 0.45
BuildActorNodeMethod · 0.45
GetActorsTreeMethod · 0.45
IsNameValidMethod · 0.45
CollectIdsMethod · 0.45
GetAllPrefabsMethod · 0.45
CollectActorsMethod · 0.45

Calls 6

CountMethod · 0.45
GetMethod · 0.45
GetNameMethod · 0.45
HasInterfaceMethod · 0.45
GetClassMethod · 0.45
IsSubClassOfMethod · 0.45

Tested by

no test coverage detected