Tasharen Entertainment Forum

Support => NGUI 3 Support => Topic started by: CarlosMassiah on February 25, 2014, 05:42:16 AM

Title: Issue with Android UI disappearing
Post by: CarlosMassiah on February 25, 2014, 05:42:16 AM
I currently have an issue on Android where the UI occasionally disappears or gets stretched across the screen. This occurs while I am using the interface (e.g. I'm holding down one of the buttons and the whole UI disappears for a moment) It seems that the functionality remains even if the UI is stretched or not visible. In other cases, buttons have no text but then the text appears after I start interacting with them.

Has anyone else experienced this issue? And / or does anyone know a way to fix this issue?
Title: Re: Issue with Android UI disappearing
Post by: bezii on February 25, 2014, 08:23:13 AM
Check these:

-UI camera must use Forward Rendering.
-Don't use multi-threaded rendering.
-Some devices (phones) have texture limits, check the size of your textures(atlases etc.) if it is not bigger than 2048x2048.
Title: Re: Issue with Android UI disappearing
Post by: ArenMook on February 25, 2014, 01:43:14 PM
@CarlosMassiah: Multi-thread rendering is a bugged feature in Unity. Never use it. I also recommend filing a bug with Unity. Maybe they will fix it some day. Maybe.
Title: Re: Issue with Android UI disappearing
Post by: CarlosMassiah on February 26, 2014, 06:15:31 AM
It was indeed the Multi-thread rendering. Thanks for the responses folks.