我有这个过渡。我想制作一个位于“desplazar”位置的块中的图像消失,然后将其删除。
transition.to(block[desplazar], {time=14000, alpha=0, onComplete=timer.performWithDelay(12000, borrado(desplazar),1) })
local function borrado(desplazar)
block[desplazar]:removeSelf()
end
但我不工作,图像正在消失,我认为图像会在过渡完成后消失,我也延迟了功能,但它不工作。
希望你能帮我
谢谢
我也是这样弄的
transition.to(block[desplazar], {time=14000, alpha=0, onComplete=timer.performWithDelay(12000, intime(),1) })
local function intime()
print ("intime")
borrado(desplazar)
end