码迷,mamicode.com
首页 > 其他好文 > 详细

quick schedule 的添加和移除

时间:2015-05-04 23:40:58      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

local scheduler = require(cc.PACKAGE_NAME .. ".scheduler")
 
local MainScene = class("MainScene", function()
    return display.newScene("MainScene")
end)

function MainScene:ctor()

    local label=cc.ui.UILabel.new({
        UILabelType = 2, text = "test hero move control", size = 32})
        :align(display.CENTER, display.cx, display.cy+150)
        :addTo(self)


    local handle  
    local interval = 1  
    local repeatIndex = 3  
    local index = 0  
    handle = scheduler.scheduleUpdateGlobal(function()  
        index = index + 1  
        label:setString(string.format("%d", index))  
        if index >= repeatIndex then  
            scheduler.unscheduleGlobal(handle)  
            print("over")  
        end  
    end)  
end

return MainScene

 

quick schedule 的添加和移除

标签:

原文地址:http://www.cnblogs.com/yufenghou/p/4477980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!