I’m changing my game resolution using Screen.SetResolution. Testing it in my Android device: Screen.height, Screen.currentResolution, Display.systemHeight and Display.renderingResolution return the resolution I set. I need the device native resolution instead.
Is there a way to get it? If not, can I assume that the initial value in Screen.currentResolution (before changing it) is the device native resolution in Android and iOS?
According to the docs entry for Screen.currentResolution, it will return the desktop’s resolution (which should be native) when the application is in windowed mode. From my own searches that appears to be the only way to do it.