Hi all,
Is there any way to load assets one time and use it form anywhere in Starling project? How can I implement that? My question applies to both - embedded and external assets.
d33play Literally the AssetManager.
AssetManager
https://doc.starling-framework.org/current/starling/assets/AssetManager.html
You can queue the assets at start and then load async, on COMPLETE, start your UI and all atlas/assets loaded by the manager can be attained by using the AssetManager getters for each type of media/asset.
Thanks TeotiGraphix, I did it successfully 🙂