Ciao mi servirebbe aiuto ho fatto questa app dove spawnano delle palline e mi servirebbe sapere come fare a mettere che quando una di queste bolle viene toccata si elimina e aggiunge un punto
questo e il codice
local W = contentWidth
local H = contentHeight
local score = 0
local scoreIncrease = 1
local scoreNum = display.newText(“0”,460,5,“Arial”,15)
– Your code here
local bolle = display.newGroup()
local perso
scoreNum:toFront()
imm = {
“moon.png”,
“baz.png”,
“tod.png”
}
function Generassi (event)
indice = math.random(1,3)
pos_y = math.random(0,768)
vel = math.random(2000,6000)
ball = display.newImage (imm[indice], 1024, pos_y)
bolle:insert( ball )
transition.moveTo(ball, {time = vel , x= 0, y = pos_y})
end
t1 = timer.performWithDelay( 100, Generassi, - 1)
function update (event)
if ( bolle.numChildren ~= 0 ) then
for i = 1, bolle.numChildren do
if ( bolle[i] ~= nil) then
if (bolle[i].x < 1) then
print(i)
bolle[i]:removeSelf ()
bolle[i] = nil
end
end
end
end
end
Runtime:addEventListener(“enterFrame”, update)