What exactly does IOS_RETINA_ENABLED do?

Monkey Targets Forums/iOS/What exactly does IOS_RETINA_ENABLED do?

AaronK(Posted 2012) [#1]
Can someone tell me what this actually does and how it affects my side of my game? I would have thought it doesn't matter if I support retina, so long as I use DeviceWidth() and DeviceHeight() I can work stuff out?


dragon(Posted 2012) [#2]
i think with this option you can have full screen resolution

otherwise only width/2 and height/2 on retina display
and size is scaled up by 100%


Alex(Posted 2012) [#3]
i think if this option is enabled the system automaticly loads imagename@... images if retina is detected.

image = LoadImage( "imagename.png" ) 'no need for "@2x"


otherwise you can use either DeviceWidth() or DeviceHeight() to detect what graphics to load.