Variables
inlineread onlyASYNC:AssetsLoadMethod = 1
Ensure asset loading is non blocking, at least between each asset. This is useful when we need to update screen during asset loading. Backends may adapt how they load assets from this setting as well
inlineread onlySYNC:AssetsLoadMethod = 2
Try to load assets synchronously (if supported on the current backend).
This means calling assets.load()
will trigger complete
event synchronously if possible.