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

Function FindObject

Source/Engine/Scripting/Scripting.h:162–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160 /// <returns>The found object or null if missing.</returns>
161 template<typename T>
162 FORCE_INLINE static T* FindObject(const Guid& id)
163 {
164 return (T*)FindObject(id, T::GetStaticClass());
165 }
166
167 /// <summary>
168 /// Finds the object by the given identifier. Searches registered scene objects and optionally assets. Logs warning if fails.

Callers 8

TickMethod · 0.85
OnResolveFunction · 0.85
Scripting.cppFile · 0.85
ReadFunction · 0.85
DeserializeMethod · 0.85
DeserializeFunction · 0.85
ReadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected