Asset Load State is an Enum that represents whither an asset has been loaded.
Possible Values
Value | Description | Numeric Value |
---|---|---|
Created | The Asset has been created, and exists. | 0 |
LoadStarted | The asset has been seen by the client and started loading. | 1 |
PartiallyLoaded | The asset is now downloading and will be done in the future. | 2 |
FullyLoaded | The asset is finished loading and is now seeable. | 3 |
Failed | The asset failed to load. | 4 |
Unloaded | The asset is not loaded at all right now. | 5 |