Hi guys,
I’ve just finished my first game and started testing on physical devices but something weird is going on. I’ve some code to display an image in the top left of my screen but it doesn’t work on all the devices. The values are set to 0 so that should be the same on all devices right? Yet, something it is not displaying at the right place on all the devices. This is the code in question:
local leftBorder = display.newImage("Img/envr/leftBorder.png") leftBorder.anchorX = 0 leftBorder.anchorY = 0 leftBorder.x = 0 leftBorder.y = 0 sceneGroup:insert(leftBorder)
This is my first real game made with corona sdk so I’ve practically no experience with deploying for multiple devices. But this should work no?
Kind regards
Bram