Hi, im totally new, so bear with me please
I have a small app which prints some cordinates on the screen in my gameloop
local myText = display.newText( player3.x, 200, 200, native.systemFont, 16 )
problem is after some time, my text have ruined my backgound image.
here is my backgound code
local ground = display.newImage(“background.PNG”)
ground.x = 160
ground.y = 300
ground:scale (0.5,0.5)
i can make it work by refreshing the background image in my gameloop, but it just not seem very effecient to me??
So without know much about Corona or game development, im guessing i need some kind of layer function or something? does it exist?
example pics
just after kaunch app in simulator
after a few seconds
thank you