Drawing text and shapes with screen coordinates

Hi
I’m working on a simple UI using Solar2D but i’m finding the coordinate system (adaptive, letterbox, etc…) confusing so i hope someone can poit me in the right direction.
Having made numerous windows programs i’m used to positioning everything in screen coordinates and would like to continue that with this app so i’m looking to do something like…

Get the screen area size for the device (phone, tablet)
Calculate a screen point based on percentage. e.g. 20% of the width by 10% of the height
Draw with the calculated screen coordinates.

So basically disable any automatic resizing so everything is in a 1:1 location.

Thanks M

Don’t specify anything in config.lua and then you’ll be pixel perfect.

I’ll give that a go!

Thanks