cocos2d-x注意事项(十)Lua发展飞机战争-4-创建主角
生活随笔
收集整理的這篇文章主要介紹了
cocos2d-x注意事项(十)Lua发展飞机战争-4-创建主角
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
二戰中被稱為二戰飛機飛機,當然,以飛機作業。這是一個游戲,我們必須加入一個飛機——這是我們的英雄。
首先創建一個層(PlaneLayer)要顯示飛機。然后,create飛機初始化方法
module("PlaneLayer",package.seeall)
local plane = nil
isAlive = true
function create()local planeLayer = CCLayer:create()CCSpriteFrameCache:sharedSpriteFrameCache():addSpriteFramesWithFile("Images/shoot.plist")plane = CCSprite:createWithSpriteFrameName("hero1.png")plane:setPosition(ccp(visibleSize.width / 2,plane:getContentSize().height / 2))planeLayer:addChild(plane)isAlive = truereturn planeLayer
end 主角這樣登場顯得有些草率和唐突,如今為主角的出場加入一點效果
local blink = CCBlink:create(1,3)local animation = CCAnimation:create()animation:setDelayPerUnit(0.1)animation:addSpriteFrame(CCSpriteFrameCache:sharedSpriteFrameCache():spriteFrameByName("hero1.png"))animation:addSpriteFrame(CCSpriteFrameCache:sharedSpriteFrameCache():spriteFrameByName("hero2.png"))local animate = CCAnimate:create(animation)plane:runAction(blink)plane:runAction(CCRepeatForever:create(animate))
?
版權聲明:本文博主原創文章,博客,未經同意不得轉載。
轉載于:https://www.cnblogs.com/zfyouxi/p/4794423.html
總結
以上是生活随笔為你收集整理的cocos2d-x注意事项(十)Lua发展飞机战争-4-创建主角的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 黄山风景区雷阵雨能爬山吗?
- 下一篇: 报表性能优化方案之报表服务器优化基础讲解