designing for dynamic content based on screen height.
so how are all of you dealing with changing positions based on screen height? I know it's easy to handle the basic ones, i.e.:
iPad
if screen.height = '768' then
self.postion.y = 700
nook
if screen height = '600' then
self.position.y = 550
kindle
if screen.height = '580' then
self.position.y = 500
how are you planning for other resolutions, or are you even bothering?
iPad
if screen.height = '768' then
self.postion.y = 700
nook
if screen height = '600' then
self.position.y = 550
kindle
if screen.height = '580' then
self.position.y = 500
how are you planning for other resolutions, or are you even bothering?
Comments
That way in my example regardless of the screen size the actor will always be 50px below the top edge of the screen.
For example if your baseline is a distance from top of 50px on an iPhone you can change the actor Y position to (50/320)*screen.height (or maybe it should be better to use camera size since the screen height will change from retina to non retina devices).