Hello Guest

Author Topic: [Unity] Animated loading screen during scene load  (Read 5581 times)

alex.seeck

  • Newbie
  • *
  • Posts: 18
    • View Profile
[Unity] Animated loading screen during scene load
« 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?

unikronsoftware

  • Administrator
  • Hero Member
  • *****
  • Posts: 9709
    • View Profile
Re: [Unity] Animated loading screen during scene load
« Reply #1 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.

alex.seeck

  • Newbie
  • *
  • Posts: 18
    • View Profile
Re: [Unity] Animated loading screen during scene load
« Reply #2 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?

unikronsoftware

  • Administrator
  • Hero Member
  • *****
  • Posts: 9709
    • View Profile
Re: [Unity] Animated loading screen during scene load
« Reply #3 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.