Hi Guys.
I’m completely new to Corona SDK and Lua so please excuse the basic question. I am trying to add a background that completely fills the screen as a background. Right now it adds the image but there is still black around the image.
At first I thought it was the size of the image so I increased the image size but this did not make any changes.
Heres the code:
local background = display.newImage("rusted\_metal10\_normal.jpg"); background.x = display.contentWidth/2; background.y = display.contentWidth/2;
I do I get the image to fit the screen and remove the black empty space around it still left.
Thank you
