• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

cocos-lua学习笔记(十)事件---调度器

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

第一种是 全局调度器

全局帧调度器

每一帧描画都会触发,windows上窗口移动和最小化的时候会暂停描画。

scheduler.scheduleUpdateGlobal(onInterval) 每一帧调用

全局自定义调度器

指定调度器的时间

scheduler.scheduleGlobal(onInterval, 0.5)  0.5秒调用一次


全局延时调度器

等待指定时间后执行一次回调函数

scheduler.performWithDelayGlobal(onInterval, 0.5)  延时0.5秒调用


local MainScene = class("MainScene", function()
    return display.newScene("MainScene")
end)

local scheduler = require(cc.PACKAGE_NAME .. ".scheduler")

function MainScene:ctor()
	-- 全局帧调度器
	local function onInterval(dt)
		print("update")
	end
	scheduler.scheduleUpdateGlobal(onInterval)

	-- 全局自定义调度器
	local function onInterval(dt)
		print("Custom")
	end
	scheduler.scheduleGlobal(onInterval, 0.5)

	-- 全局延时调度器
	local function onInterval(dt)
		print("once")
	end
	scheduler.performWithDelayGlobal(onInterval, 0.5)
end

return MainScene

大家看一下控制台吧,感觉像是爆炸了。



第二种要介绍的则是 节点调度器

Node是基础类,封装很多基础的方法和属性,其中调度器就是方法之一。

Node中的调度器只能在Node中使用,Node负责管理调度器的生命周期。

大部分情况下,我们使用节点调度器,这样就能把精灵集中在游戏逻辑实现,而不是调度器的生命周期管理。


1.节点桢调度器

2.节点自定义调度器

3.节点延时调度器

local MainScene = class("MainScene", function()
    return display.newScene("MainScene")
end)

local scheduler = require(cc.PACKAGE_NAME .. ".scheduler")

function MainScene:ctor()
	self:schedule(function () print("schedule") end, 1.0)

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

return MainScene


停止节点的方法是

node:stopAction(action)



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
使用NginxLua实现redis高性能http接口发布时间:2022-07-22
下一篇:
Lua控制语句发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap