Cocos2dx学习笔记7:精灵(Sprite)

Cocos2dx学习笔记7:精灵(Sprite),第1张

概述Cocos2dx的Sprite由Texure,frame和animation组成,由openes负责渲染。在游戏里,精灵是一个重要的概念,游戏背景、NPC、人物、道具等。在cocos2d-x引擎中,只要是用图片展示的,基本上需要使用精灵类。 一、创建精灵常见的三种方法:   1、直接使用Sprite的create方法创建 auto sprite = Sprite::create("HelloWor

Cocos2dxSpriteTexureframeanimation组成,由openes负责渲染。在游戏里,精灵是一个重要的概念,游戏背景、NPC、人物、道具等。在cocos2d-x引擎中,只要是用图片展示的,基本上需要使用精灵类。

一、创建精灵常见的三种方法:

1、直接使用Spritecreate方法创建

autosprite=Sprite::create("HelloWorld.png");//创建一个精灵

this->addChild(sprite,0);//把精灵加到层里

2、使用纹理来创建精灵

autosprite1=Sprite::createWithTexture(TextureCache::getInstance()->addImage("HelloWorld.png"));

this->addChild(sprite1,0);//把精灵加到层里

还有一种是使用精灵帧创建精灵,精力帧动画主要用来做动画效果用,也可以用来创建精灵。首先我们使用TexturePacker工具将我们用的素材就行打包,这里我们对Resources资源图片进行打包。

首先将需要打包的图片拖进软件里,然后在texturefile位置选择需要输出的位置并填写输出的文件名,点击Publis按钮即可进行打包。打包完成后,会输出同名的pList文件png图片。

650) this.width=650;" title="点击查看原图" border="0" alt="学习笔记7:图1.png" src="http://img.jb51.cc/vcimg/static/loading.png" width="650" height="417" src="http://www.byjth.com/content/uploadfile/201508/thum-42171440669785.png">

这里我们取名为cocosxuexi,输出目录为桌面,点击打包后,会在桌面生成文件。

650) this.width=650;" title="点击查看原图" border="0" alt="学习笔记7:图2.png" src="http://img.jb51.cc/vcimg/static/loading.png" width="263" height="189" src="http://www.byjth.com/content/uploadfile/201508/463f1440670011.png">

把这2个文件放进我们的资源目录里面即可。这调用时候,我们首先要先加载pListe文件,然后才可以调用里面的HelloWorld.png文件,否则会出现找不到资源的错误。

650) this.width=650;" title="点击查看原图" border="0" alt="学习笔记7:图3.png" src="http://img.jb51.cc/vcimg/static/loading.png" width="650" height="386" src="http://www.byjth.com/content/uploadfile/201508/thum-6ec01440670114.png">

3、使用精灵帧来创建精灵

autopCache=SpriteFrameCache::sharedSpriteFrameCache();//获得SpriteFrame的缓存

pCache->addSpriteFramesWithfile("cocosxuexi.pList");

autosprite2=Sprite::createWithSpriteFramename("HelloWorld.png");

this->addChild(sprite2,0);//把精灵加到层里

三种方法创建的精灵,均使用HelloWorld.png图片创建。创建成功后就可以在游戏窗口显示了。

650) this.width=650;" title="点击查看原图" border="0" alt="学习笔记7:图4.png" src="http://img.jb51.cc/vcimg/static/loading.png" width="331" height="511" src="http://www.byjth.com/content/uploadfile/201508/19e31440670183.png">

本文由闭眼就天黑整理编辑,转载请注明:http://www.byjth.com/biji/26.html | 闭眼就天黑专栏_原创技术博客

总结

以上是内存溢出为你收集整理的Cocos2dx学习笔记7:精灵(Sprite)全部内容,希望文章能够帮你解决Cocos2dx学习笔记7:精灵(Sprite)所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存