CVP认证学习笔记--李天宇016使用纹理缓存创建精灵

CVP认证学习笔记--李天宇016使用纹理缓存创建精灵,第1张

概述对于纹理的合理使用,可以降低IO的消耗,因此通过这节课后,以后加载精灵,最好都使用TextureCache.addImage();这样下次使用时将直接返回该纹理。引用之前加载的纹理可以减少 GPU 与 CPU 的内存消耗。顺便复习了一下上周学习的内容单点触摸和动作。附上API链接供参考:http://api.cocos.com/cn/de/d33/classcocos2d_1_1_texture_

对于纹理的合理使用,可以降低IO的消耗,因此通过这节课后,以后加载精灵,最好都使用TextureCache.addImage();这样下次使用时将直接返回该纹理。引用之前加载的纹理可以减少 GPU cpu 的内存消耗。顺便复习了一下上周学习的内容单点触摸和动作。附上API链接供参考:http://api.cocos.com/cn/de/d33/classcocos2d_1_1_texture_cache.html#details

代码如下:

var HelloWorldLayer = cc.Layer.extend({

sprite:null,

ctor:function () {

this._super();

var size = cc.winSize;

var bg_texture = cc.textureCache.addImage("res/bg.jpg");

var hero1_texture = cc.textureCache.addImage("res/h2.png");

var bg = new cc.Sprite(bg_texture);

this.addChild(bg,0);

bg.setposition(size.wIDth/2,size.height/2);

var hero = new cc.Sprite(hero1_texture);

hero.setTag(100);

this.addChild(hero,1);

hero.setScale(0.1);

var act1 = new cc.Rotateto(2,180);

var act2 = new cc.Fadeto(2,1);

var act3 = new cc.FadeIn(2);

var act4 = new cc.Rotateto(2,360);

hero.runAction(cc.sequence(act1,act2,act3,act4));

hero.setposition(200,200);

return true;

},

onEnter:function(){

this._super();

cc.eventManager.addListener({

event:cc.EventListener.touch_ONE_BY_ONE,

swallowtouches:true,

ontouchBegan:this.touchbegan.bind(this),

ontouchmoved:this.touchmoved,

ontouchended:this.touchended,

},this);

},

touchbegan:function(touch,event){

var Nowhero = event.getCurrentTarget().getChildByTag(100);

var act = new cc.moveto(2,touch.getLocationX(),touch.getLocationY());

Nowhero.runAction(act);

}

});

var HelloWorldScene = cc.Scene.extend({

onEnter:function () {

this._super();

var layer = new HelloWorldLayer();

this.addChild(layer);

}

});

最后附上作业链接:

http://www.cocoscvp.com/usercode/2016_04_22/9a5d3f6b39c64a368256ecc5b90124f54625a576/

总结

以上是内存溢出为你收集整理的CVP认证学习笔记--李天宇016使用纹理缓存创建精灵全部内容,希望文章能够帮你解决CVP认证学习笔记--李天宇016使用纹理缓存创建精灵所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1080521.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存