2D Toolkit Forum

2D Toolkit => Support => Topic started by: alex.seeck on June 18, 2015, 09:30:17 am

Title: [Unity] Animated loading screen during scene load
Post by: alex.seeck on June 18, 2015, 09:30:17 am
How can one show an animated loading screen while all the atlases are loaded on scene start?
Title: Re: [Unity] Animated loading screen during scene load
Post by: unikronsoftware on June 18, 2015, 02:47:19 pm
The atlases are loaded by unity during the scene load process, you don't get much control over that - you could load the level async and display a loading bar during that time.
Title: Re: [Unity] Animated loading screen during scene load
Post by: alex.seeck on June 18, 2015, 07:15:07 pm
So if I'm understanding this correctly:
I use Application.LoadLevelAsync and therefore can play animations, while 2DToolkit is loading all the atlases and I won't get a total freeze during that time?
Title: Re: [Unity] Animated loading screen during scene load
Post by: unikronsoftware on June 18, 2015, 11:31:55 pm
What I'm saying is thats how you'd approach something like this in Unity. Unity behaves differently on different platforms, does different things and blocks at different points.