Hello everyone,
I’m having a issue with putting an sky image on the background. I’ve typed in the correct code of
local sky = display.newRect(centerX, centerY, screenWidth, screenHeight)
What I should have is a white background that fills the entire screen. All I get is the bottom right corner of the screen filled as if the background has been broken into 4 separate rectangles. When I try to add in a fill color the white rectangle disappears.
local sky = display.newRect(centerX, centerY, screenWidth, screenHeight)
sky:setFillColor(0,0,1)
Again my rectangle disappears instead of filling the box in with a color.
Please let me know what I can do to fix this. Thank you.