I want to make a loading screen for my game, and have a counter with how many assets are left to load, but I have no clue where to start?
1 Like
You can use the ContentProvider service if you want to learn how many assets are left to load.
2 Likes
ContentProvider
is a great service for this!
You can use ContentProvider.RequestQueueSize
to get the number, then check to see if it’s less than 5 to remove the loading screen.
3 Likes