Gets the asset (or null if unassigned).
| 197 | /// Gets the asset (or null if unassigned). |
| 198 | /// </summary> |
| 199 | T* Get() const |
| 200 | { |
| 201 | if (!_asset) |
| 202 | const_cast<SoftAssetReference*>(this)->OnResolve(T::TypeInitializer); |
| 203 | return (T*)_asset; |
| 204 | } |
| 205 | |
| 206 | /// <summary> |
| 207 | /// Gets managed instance object (or null if no asset linked). |