| 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. |
no outgoing calls
no test coverage detected