您好,登錄后才能下訂單哦!
1. 加載 節點到場景
第一種方法
local scene = cc.CSLoader:createNode("scene.csb")
self:addChild(scene)
第二種方法
local scene = cc.uiloader:load("MainScene.csb"):addTo(self)
2.強轉精靈類型
local sprite = tolua.cast(object,"cc.Sprite")
CocoStudio 做的里面的精靈是 CCSprite (c++里面的)類型 不能使用 setPosition 等 一些 Lua 里面的方法 需要 使用 tolua.cast(object,type)進行強制轉換類型
3.按鈕不一樣的使用方法
local btn = scene:getChildByName("Button_1")
btn:addTouchEventListener(function (event,type)
if type == ccui.TouchEventType.began then
print("began")
end
if type == ccui.TouchEventType.ended then
print("ended")
end
end)
4. 動畫 (播放時間軸)
local timeline = cc.CSLoader:createTimeline("MainScene.csb");
scene:runAction(timeline);
timeline:gotoFrameAndPlay(0,true);
timeline:setFrameEventCallFunc(function(dt)
print(dt:getEvent()) -- 幀事件
end)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。