- Home /
Question by
Vortexboy · Dec 14, 2018 at 03:27 AM ·
iosresolutionscreen
On iOS devices, when you change the resolution using Screen.SetResolution, the screen will flash and sometimes a short black screen will appear.
This is how I use it.
Screen.SetResolution(w, h, true, 60);
Comment
Answer by darkStar27 · Dec 14, 2018 at 03:40 AM
Try using
Screen.SetResolution(w, h, true);
only. Unity will automatically switch to the highest refresh rate supported.
Still did not solve the problem of screen flicker, thank you for your reply