Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: Sahkan on December 09, 2014, 06:59:27 AM
-
I've got 2 applications and one of them very small, each runs smooth on the pc ( on the editor too ). and when i make a build for the IPAD, it says 30fps but you can see this is not smooth at all. now i know IPad4 is strong enough to run about 10-20 2DSprites moving around. so what is the problem ?
-
iOS devices are stuck at 30FPS on normal behaviour.
Place this code on Start of the scene:
Application.targetFrameRate = 60;
This will unlock the framerate but remember that when there is drop in FPS, the user will notice it more. Moreover, setting FPS at 60 consume more battery.
-
iOS devices are stuck at 30FPS on normal behaviour.
Place this code on Start of the scene:
Application.targetFrameRate = 60;
This will unlock the framerate but remember that when there is drop in FPS, the user will notice it more. Moreover, setting FPS at 60 consume more battery.
Thanks, I will check it out.