Cocos2d-x-lua学习点滴
Lua下的方法。自己项目经验,个人见解,不能确保正确。
Sprite:
local Light = CCSprite:create("light.png")
Light:setPosition(ccp(300,300))
Light:setScale(1)
Light:setVisible(true)
self.secondLevelMenuLayer:addChild(Light)
Button:
searchButton = Button:create()
searchButton:setScale(1.2)
searchButton:setTouchEnabled(true)
searchButton:loadTextures("button-search1.png","button-search2.png","button-search3.png") -- 3个""不可或缺。可nil。
searchButton:setPosition(CCPoint(280,400))
self.superView.secondLevelMenuLayer:addWidget(searchButton)
searchButton:setEnabled(false)
Button的禁用状态。
在button不可触摸的时候设置图片灰色。
Button:setTouchEnable(false)
同一时候设置Button:setBright(false)
Fade效果
FadeIn->是从暗逐渐变亮
FadeOut->从亮逐渐变消失。
FadeTo->从亮逐渐变暗
local actionTime = 0.2
local array = CCArray:create()
array:addObject(CCFadeTo:create(0.2, 100))
local action = CCSequence:create(array)
self.LayerColor:runAction(action)
当前引擎UI界面不可实现此效果。
Sprite的旋转
local Light = CCSprite:create("light.png")
Light:setPosition(ccp(480,510))
Light:setScale(0.8)
Light:setVisible(true)
L = CCRotateBy:create(5,360) --RotateTo角度360就没效果。有网帖
Light:runAction(CCRepeatForever:create(L))
缩放效果
local ImageView_victory = self.secondLevelMenuLayer:getWidgetByName("ImageView_victory")
local array = CCArray:create()
array:addObject(CCScaleBy:create(0.5,1.5))--參数为time。scale
array:addObject(CCScaleTo:create(0.5,1))
local action1 = CCSequence:create(array)
ImageView_victory:runAction(action1)
UI界面分步载入的实现
local imgs = {} --创建数组
imgs[1] = ImageView_victory
local imgs0 = {}
imgs0[1] = level
imgs0[2] = shengwang
imgs0[3] = gold
local imgs1 = {}
imgs1[1] = hero0
imgs1[2] = hero1
imgs1[3] = hero2
imgs1[4] = hero3
imgs1[5] = hero4
local imgs2 = {}
imgs2[1] = jingyantiao0
imgs2[2] = jingyan0
imgs2[3] = jingyantiao1
imgs2[4] = jingyan1
imgs2[5] = jingyantiao2
imgs2[6] = jingyan2
imgs2[7] = jingyantiao3
imgs2[8] = jingyan3
imgs2[9] = jingyantiao4
imgs2[10] = jingyan4
local imgs3 = {}
imgs3[1] = exp0
imgs3[2] = exp1
imgs3[3] = exp2
imgs3[4] = exp3
imgs3[5] = exp4
local imgs4 = {}
imgs4[1] = ImageView_sun_0
imgs4[2] = ImageView_sun_1
imgs4[3] = ImageView_sun_2
imgs4[4] = ImageView_sun_3
imgs4[5] = ImageView_sun_4
local imgs5 = {}
imgs5[1] = Button_again
imgs5[2] = Button_share
imgs5[3] = Button_sure
local all_imgs = {}
all_imgs[1] = imgs
all_imgs[2] = imgs0
all_imgs[3] = imgs1
all_imgs[4] = imgs2
all_imgs[5] = imgs3
all_imgs[6] = imgs4
all_imgs[7] = imgs5
local index = 1
function callback() --for循环遍历数组
if all_imgs[index] then
for k, v in ipairs(all_imgs[index]) do
if v then
v:setEnabled(true)
end
end
end
index = index +1
if index >7 then
self.secondLevelMenuLayer:stopAllActions()
end
end
local array = CCArray:create()
local callfunc = CCCallFunc:create(callback)
array:addObject(callfunc)
local sequence = CCSequence:create(array)
local forever = CCRepeatForever:create(sequence)
self.secondLevelMenuLayer:runAction(forever)
UI上的控件获取须要强转
--战斗结束界面Button实现
local function back()
CCDirector:sharedDirector():popScene()
end
local Button_close = tolua.cast(self.secondLevelMenuLayer:getWidgetByName("Button_close"),"Button")--lua的强转
Button_close:setScale(1.3)
Button_close:addTouchEventListener(back)
local Button_sure = self.secondLevelMenuLayer:getWidgetByName("Button_sure")
Button_sure:addTouchEventListener(back)
local Button_again = self.secondLevelMenuLayer:getWidgetByName("Button_again")
local function enterBattle(sender, eventType)
local pvpScene = PVPScene:new()
pvpScene:init()
CCDirector:sharedDirector():pushScene(pvpScene.scene)
end
Button_again:addTouchEventListener(enterBattle)
Button直接获取UI
创建UI
FormationUI = class ()
local ccs = require ("ccs")
function FormationUI:ctor()
self.node = GUIReader:shareReader():widgetFromJsonFile("fight-object_1.ExportJson")--当初做的时候json文件出错当时一直崩溃
end
function FormationUI:init()
end
Button获取UI(不通过scene)
--formationButton
local function enterFormation(sender,eventType)
if eventType == ccs.TouchEventType.ended then
local formationUI = FormationUI.new()
self.secondLevelMenuLayer:addWidget(formationUI.node)
formationUI:init()
end
end
local formationButton = self.menuLayer:getWidgetByName("formationButton")
formationButton:addTouchEventListener(enterFormation)
获取屏幕尺寸
local visibleSize = CCDirector:sharedDirector():getVisibleSize()
获取json文件
self.node = GUIReader:shareReader():widgetFromJsonFile("battleLose.ExportJson")
加入当前副本指示箭头(跳动效果)
jiantou = CCSprite:create("image_jiantou.png")
jiantou:setPosition(ccp(170,460))
jiantou:setZOrder(1)
self.superView.secondLevelMenuLayer:addChild(jiantou)
local actionUp = CCJumpBy:create(20,ccp(0,0),40,20)
local actionByBack = actionUp:reverse()
local array = CCArray:create()
array:addObject(actionUp)
array:addObject(actionByBack)
local action = CCSequence:create(array)
jiantou:runAction(CCRepeatForever:create(action))
显示一精灵的方法。
没有就创建,有就隐藏。sender,eventType调用函数。參数为xy坐标
--显示箭头
function RegionMapUI:showArrow(x, y)
--假设没有箭头就新建
if not self.arrow then
self.arrow = CCSprite:create("image_jiantou.png")
self.arrow:setZOrder(1000)
self.arrow:setAnchorPoint(CCPoint(0.52,0.17))
self.node:addNode(self.arrow)
end
--推断是否在运行动画
if self.arrow:numberOfRunningActions() then
self.arrow:stopAllActions()
end
self.arrow:setVisible(true)
self.arrow:setPosition(CCPoint(x,y))
self.arrow:runAction(CCRepeatForever:create(CCJumpBy:create(0.8,ccp(0,0),15,1)))
end
--隐藏箭头
function RegionMapUI:hideArrow()
--假设有箭头就隐藏
if self.arrow then
self.arrow:stopAllActions()
self.arrow:setVisible(false)
end
end
self:showArrow(sender:getPositionX(), sender:getPositionY())
self.winSize = cc.Director:getInstance():getWinSize()
setPosition(self.winSize.width/2,self.winSize.height/3)
Cocos2d-x-lua学习点滴的更多相关文章
- iPhone应用开发 UITableView学习点滴详解
iPhone应用开发 UITableView学习点滴详解是本文要介绍的内容,内容不多,主要是以代码实现UITableView的学习点滴,我们来看内容. -.建立 UITableView DataTab ...
- [转]LUA 学习笔记
Lua 学习笔记 入门级 一.环境配置 方式一: 1.资源下载http://www.lua.org/download.html 2.用src中的源码创建了一个工程,注释调luac.c中main函数,生 ...
- Phonegap学习点滴(2) -- 网络状态检测
Phonegap学习点滴(2) -- 网络状态检测 http://blog.csdn.net/x251808026/article/details/16992943 方法一:在MainActivit ...
- Lua学习笔记(二):基本语法
Lua学习指南:http://www.lua.org/manual/ 首先我们要明确的一点是:在Lua中,除了关键字外一切都是变量. Lua关键字 可以查看这个地址:http://www.lua.or ...
- Lua 学习笔记(一)
Lua学习笔记 1.lua的优势 a.可扩张性 b.简单 c.高效率 d.和平台无关 2.注释 a.单行注释 -- b.多行注释 --[[ --]] 3.类型和 ...
- lua学习:使用Lua处理游戏数据
在之前lua学习:lua作配置文件里,我们学会了用lua作配置文件. 其实lua在游戏开发中可以作为一个强大的保存.载入游戏数据的工具. 1.载入游戏数据 比如说,现在我有一份表单: data.xls ...
- Lua学习笔记6:C++和Lua的相互调用
曾经一直用C++写代码.话说近期刚换工作.项目组中的是cocos2dx-lua,各种被虐的非常慘啊有木有. 新建cocos2dx-lua项目.打开class能够发现,事实上就是C++项 ...
- Lua学习笔记4. coroutine协同程序和文件I/O、错误处理
Lua学习笔记4. coroutine协同程序和文件I/O.错误处理 coroutine Lua 的协同程序coroutine和线程比较类似,有独立的堆栈.局部变量.独立的指针指令,同时又能共享全局变 ...
- nginx+lua学习
1. nginx+lua学习 1.1. 网关架构 1.2. nginx命令和信号控制 nginx -s stop 快速关闭,不管有没有正在处理的请求 nginx -s quit 优雅关闭方式,推出前完 ...
- (转)Lua学习笔记1:Windows7下使用VS2015搭建Lua开发环境
Lua学习笔记1:Windows7下使用VS2015搭建Lua开发环境(一)注意:工程必须添加两个宏:“配置属性”/“C或C++”/“预处理器”/“预处理器定义”,添加两个宏:_CRT_SECURE_ ...
随机推荐
- cocos2dx --- 在游戏中显示HTML页面
前文介绍了简单的富文本组件RichText,如今我们来了解下由freeType库做出来的第三方组件.可以直接显示html页面,而且可以实现超链接.和触摸事情. 步骤: 1.在github中 下载 ...
- redis主从复制,读写分离
主从复制,读写分离 Master/Slave 是什么 master写入 slave读取 能干嘛 读写分离,更加安全,性能提升 怎么玩 一主二仆.薪火相传.反客为主 周明老师,能够把长篇大论总结的很精辟 ...
- HTML5-1、标签
本文只是自己学习HTML5时的一些笔记.希望自己能够学好HTML5. 如果有感兴趣的同学.可以互相学习. 我觉得HTML5在未来的开发中站主导地位. 下面开始学习HTML5. 还是从HTML5标签开始 ...
- Hadoop 三剑客之 —— 分布式文件存储系统 HDFS
一.介绍 二.HDFS 设计原理 2.1 HDFS 架构 2.2 文件系统命名空间 2.3 数据复制 2.4 数据复制的实现原理 2.5 副本的选择 2 ...
- linux服务器网站安全狗安装教程
1.下载服务器安全狗和服务器网站安全狗,选择好版本.http://download.safedog.cn/safedog_linux64.tar.gz 这个是网站安全狗的下载地址2.登录centos进 ...
- Redis的配置文件详解
daemonize:如需要在后台运行,把该项的值改为yes pdifile:把pid文件放在/var/run/redis.pid,可以配置到其他地址 bind:指定redis只接收来自该IP的请求,如 ...
- 如何解决 不能以 DISTINCT 方式选择 text、ntext 或 image 数据类型
distinct去重,如果遇到text字段,可以用以下方法解决 1.用not exists select * from tab awhere not exists ( select 1 from t ...
- php基础------将二维数组转三维数组
将二维数组转为三维数组 /** * 二维数组转三维数组(指定键为三维数组的键名) * @param [type] $arr [要排序的数组] * @param [type] $key [指定的键] * ...
- CDR中如何将对象在页面居中显示
利用CorelDRAW在做设计排版时,如果想让对象在页面居中显示你会用什么方法?用鼠标拖?还是更准确的做法选择参照物对象,利用对齐与分布命令?或者还有更简单快速的方法,一起来看看吧! 最简单的方法(页 ...
- Android 7.0 Gallery图库源码分析4 - SlotView手势监听及页面跳转
上篇文章讲了初始化View时会实例化一个SlotView并监听其事件,至于它是怎么实现的,用的是Android自带的GestureDetector. GestureDetector是Android自带 ...