https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往

cocos2d-lua3.7组件篇(二)-两帧图片互相跳动

组件:两帧图片互相切换的动画。

 

 

实现如下效果:

 

 

 

 

1.缓存动画对象

2.加载两帧图片

 

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

function MenuScene:ctor()


            local animate = cc.Animation:create()
            animate:addSpriteFrameWithFile("dog.png")
            animate:addSpriteFrameWithFile("dog2.png")
                animate:setLoops(-1)
            animate: setDelayPerUnit(2.8 / 14.0)

    display.setAnimationCache("haha",animate)

    local btn = ccui.Button:create("button/aaa_N.png", "", "", 0)  
        :pos(display.cx, 100)  
        :addTo(self)  
        --按钮文字  
        btn:setTitleText("按钮")  
        --字体颜色  
        btn:setTitleColor(cc.c3b(255, 255, 255))  
        --按钮的回调函数  
        btn:addTouchEventListener(function(sender, eventType)  
        if (2== eventType)  then  
            
            

            local action = cc.Animate:create(display.getAnimationCache("haha"))

            local sprite1 = display.newSprite("dog2.png")  
                :center()  
                :addTo(self)  
                :runAction(action)  

        end  
    end)  

--getAnimationCache





end

function MenuScene:onEnter()
    print("enter")
end

function MenuScene:onExit()
end

return MenuScene

 

 

 

 

 

posted @ 2017-12-18 17:55  鱼酱  阅读(197)  评论(0编辑  收藏  举报

https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往