where does corona decide to put images that are supposed to be at 0,0? I have a 100 x 100 img
heres the code
local background = display.newRect(160, 240, 320, 568) background:setFillColor(1,1,1) local foo = display.newImageRect("images/foo.png", 100, 100); -- Local path to image, width, height foo.x, foo.y = 0, 0
my understanding was that it would put the middle of the image 50,50 at the x,y of 0,0 but this does not seem to be the case.