0
一般Corona SDK問題,什麼會得到更好的性能有一個運行時事件偵聽器enterFrame或精靈表。所以基本上我有什麼是:Corona SDK性能。動畫或雪碧表
local function animate(e)
star.rotation = star.rotation +3;
end
Runtime:addEventListener ("enterFrame", animate);
return star;
這會得到比具有自動循環的精靈表更好的性能。兩者基本上都是無限循環的(或者直到動作發生)。