Positioning Actors for iPhone5/Legacy
I'm wanting to position an actor so it is always at the bottom of the screen (in portrait mode).
How can I do this so it works for both iPhone 5 and Legacy iPhone? I thought maybe I'd use game.Screen.Size.Height - but it appears that this doesn't actually represent the physical device's screen size, it seems to just be set by the games settings.
Any suggestions?
How can I do this so it works for both iPhone 5 and Legacy iPhone? I thought maybe I'd use game.Screen.Size.Height - but it appears that this doesn't actually represent the physical device's screen size, it seems to just be set by the games settings.
Any suggestions?
Comments
Check if iPhone legacy
if game.Screen.Size.Width = 480
do something
Check if iPhone 5
if game.Screen.Size.Width = 568
do something
Back to square one?