Синтаксис: Lua
function clear(sprite)
while sprite:getNumChildren() > 0 do
sprite:removeChildAt(1)
end
end
while sprite:getNumChildren() > 0 do
sprite:removeChildAt(1)
end
end
Синтаксис: Lua
function clearStage()
local numChildren=stage:getNumChildren()
for i=1,numChildren do
stage:getChildAt(1):removeFromParent()
end
end
local numChildren=stage:getNumChildren()
for i=1,numChildren do
stage:getChildAt(1):removeFromParent()
end
end
Чистка сміття з пам'яті і вивід в консоль
Синтаксис: Lua
local UsedMemory = function(cleanup)
if cleanup == true then
collectgarbage()
end
local mem = collectgarbage("count")
print( "\nПамяти сожрало: " .. mem )
return mem
end
-- використовуємо функцію так:
UsedMemory(true)
if cleanup == true then
collectgarbage()
end
local mem = collectgarbage("count")
print( "\nПамяти сожрало: " .. mem )
return mem
end
-- використовуємо функцію так:
UsedMemory(true)
Немає коментарів:
Дописати коментар