cocos-lua 调度器

1.全局帧调度器:

scheduleUpdateGlobal(listener)

2.全局延时调度器:

performWithDelayGlobal(listener,time)

3.全局自定义调度器:

scheduleGlobal(listener,interval)

4.节点调度器:

  node:schedule(function ()
  print("schedule")
  end,1.0)

-- 停止调度器通过stopAction(),结束

5.节点延时调度器:

 node:performWithDelay(function ()
        print("performWithDelay")
    end, 1.0)

 

你可能感兴趣的:(cocos,lua)