When I put the code of a stopwatch in my game, it goes to the back of the screen I can see it on the edge as my background doesn’t cover my screen completely so how do I make it come forward and also shrink it?
Corona shows things in the order they are created. If you create the stopwatch first then the background, the background will be on top. Try creating the background first. If you can’t there is an option where you can do something like:
background:toBack()
which will change the order of the objects. There is also a :toFront() method.
Rob
Corona shows things in the order they are created. If you create the stopwatch first then the background, the background will be on top. Try creating the background first. If you can’t there is an option where you can do something like:
background:toBack()
which will change the order of the objects. There is also a :toFront() method.
Rob