- Home /
Android loading indicator missing after splash screen
This issue appeared when I updated from Unity 3.5 to Unity 4. Before the update the load indicator was shown everytime the game loaded a new scene. But now the loading indicator is only shown in the splash screen when it starts loading up the application.
How do I get it to work normally again? Or is it a bug in Unity 4?
Comment
Answer by electricseed · Sep 02, 2013 at 02:04 PM
Same here, it seems that unity changed the default behaviour to show it on startup only. you can call it manually using
#if UNITY_IPHONE
Handheld.SetActivityIndicatorStyle(iOSActivityIndicatorStyle.Gray);
#elif UNITY_ANDROID
Handheld.SetActivityIndicatorStyle(AndroidActivityIndicatorStyle.Small);
#endif
http://docs.unity3d.com/Documentation/ScriptReference/Handheld.StartActivityIndicator.html