Author Topic: Issue with Android UI disappearing  (Read 2556 times)

CarlosMassiah

  • Newbie
  • *
  • Thank You
  • -Given: 1
  • -Receive: 0
  • Posts: 10
    • View Profile
Issue with Android UI disappearing
« 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?

bezii

  • Newbie
  • *
  • Thank You
  • -Given: 1
  • -Receive: 0
  • Posts: 19
    • View Profile
Re: Issue with Android UI disappearing
« Reply #1 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.

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: Issue with Android UI disappearing
« Reply #2 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.

CarlosMassiah

  • Newbie
  • *
  • Thank You
  • -Given: 1
  • -Receive: 0
  • Posts: 10
    • View Profile
Re: Issue with Android UI disappearing
« Reply #3 on: February 26, 2014, 06:15:31 AM »
It was indeed the Multi-thread rendering. Thanks for the responses folks.