im wondering how can i make the “blood.png” image appear UNDER the “woodholes.png”??? the bug is under it but for some reason, when i kill the bug, the blood appears OVER the woodholes.png image. please help! thanks in advance!
local bug = display.newImage( “goldbeetle.png” )
bug.x = 60
bug.y = 210
local function killbug (event)
local blood = display.newImage (“blood.png”)
blood.x = bug.x
blood.y = bug.y
score.setScore( score.getScore() + 10)
bug:removeSelf()
end
bug:addEventListener(“touch”, killbug)
local wood = display.newImage( “woodholes.png” )
wood.x = 240
wood.y = 160 [import]uid: 10827 topic_id: 4529 reply_id: 304529[/import]