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

Method GetReferences

Source/Engine/Animations/Graph/AnimGraph.Base.cpp:69–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67#if USE_EDITOR
68
69void AnimGraphBase::GetReferences(Array<Guid>& output) const
70{
71 GraphType::GetReferences(output);
72
73 // Collect references from nested graph (assets used in state machines)
74 for (const auto* subGraph : SubGraphs)
75 {
76 subGraph->GetReferences(output);
77 }
78}
79
80#endif
81

Callers

nothing calls this directly

Calls 1

GetReferencesFunction · 0.50

Tested by

no test coverage detected