我有一个按钮,每次触摸按钮时都会创建并施加力。如何防止这种情况泄漏内存?
我正在使用导演课程从一个场景切换到另一个场景。这是代码:
-- Fire the rocket from the jet position
local function fireTheRocket(event)
if event.phase == "ended" then
local fireBall = display.newImage( "rocket.png")
fireBall.x = jet.x;
fireBall.y = jet.y;
GUI:insert(fireBall);
physics.addBody(fireBall, "dynamic")
fireBall:applyForce( 1000, 0, fireBall.x, fireBall.y )
end
end
fireBtn:addEventListener("touch", fireTheRocket)