| 177 | /// <returns>Loaded asset or null if cannot</returns> |
| 178 | template<typename T> |
| 179 | FORCE_INLINE static T* LoadAsync(const Guid& id) |
| 180 | { |
| 181 | return static_cast<T*>(LoadAsync(id, T::TypeInitializer)); |
| 182 | } |
| 183 | |
| 184 | /// <summary> |
| 185 | /// Loads asset and holds it until it won't be referenced by any object. Returns null if asset is missing. Actual asset data loading is performed on a other thread in async. |
no outgoing calls
no test coverage detected