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

cocos2d-lua 笔记

时间:2014-05-01 16:01:37      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:color   strong   get   set   使用   os   rom   php   date   js   div   

由于cocos2d-js3.0还只有alpha版,加上团队成员都使用lua版,所以又改用lua版了

不得不说lua语言实在简单,不了解lua的童鞋完全不必担忧,花一天时间看看lua就差不多了

cocos2d-js与cocos2d-lua的 api很接近,由于lua接口文档的和js接口文档的坑爹性,咱还是以看示例为主,文档为辅吧

 

一下为个人笔记,纯为记忆。

 

color   cc.c4b(r,g,b,a)

scheduler = cc.Director:getInstance():getScheduler();
countdownSchedule = scheduler:scheduleScriptFunc(countdown, 1, false)

 scheduler:unscheduleScriptEntry(countdownSchedule); /*remove*/

 

 

layer:scheduleUpdateWithPriorityLua(update, 0)   /*帧*/
Node:
removeFromParent(clean)
 
Event:

listener1 = cc.EventListenerTouchOneByOne:create()
listener1:setSwallowTouches(true);

listener1:registerScriptHandler(onTouchBegan,cc.Handler.EVENT_TOUCH_BEGAN )

eventDispatcher = layer:getEventDispatcher()
eventDispatcher:addEventListenerWithSceneGraphPriority(listener1, r)

cocos2d-lua 笔记,布布扣,bubuko.com

cocos2d-lua 笔记

标签:color   strong   get   set   使用   os   rom   php   date   js   div   

原文地址:http://www.cnblogs.com/chengzhenping/p/3700618.html

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