CCSprite的使用方法大全

一、精灵创建及初始化

1、从图片文件创建:

CCSprite *sprite = [CCSprite spriteWithFile:@"ImageFileName.png"];

默认锚点 ccp(0.5,0.5), 默认位置 ccp(0,0), CCSprite尺寸(contentSize)为图片尺寸

2、从帧缓存创建:

[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"MineSweeping.plist"];

CCSprite *sprite = [CCSprite spriteWithSpriteFrameName:@"ImageFileName.png"];

3、初始化及自定义大小

CCSprite *sprite = [CCSprite spriteWithFile:@"ImageFileName.png" rect:CGRectMake(x,y,w,h)];

只显示图片的一部分,大小为 w,h

iOS设备的贴图尺寸必须符合“2的n次方” 规定,所以贴图的宽和高必须是2,4,8,16,32,64,128,256,512,1024. 在第三代设备上可以达到2048像素

二、精灵常用属性及方法:

添加子节点,CCSprite继承自CCNode,可以进行addChild的操作

[self addChild:sprite];

设置CCSprite位置,本地GL坐标系

[s setPosition:ccp(x,y)];

sprite.position=ccp(100,100);//设置精灵左下角坐标是x=100,y=100,本地GL坐标系

缩放 (参数为比例,1保持不变,0.5代表50%,2代表200%)

sprite.scale=2;//放大2倍

旋转

sprite.rotation=90;//旋转90度

设置透明度 (范围0~255)

sprite.opacity=255;//设置透明度为完全不透明(范围0~255)

设置CCSprite锚点,左下角:

sprite.anchorPoint=ccp(0,0);//设置锚点为左下角,默认为ccp(0.5,0.5)中心点

开启CCSprite镜像

[sprite setFlipX:YES];//X轴镜像反转

[sprite setFlipY:YES];//Y轴镜像反转

是否可见

[sprite setVisible:NO];//设置隐藏,默认为可见

设置CCSprite(图片)的颜色

[sprite setColor:ccc3(255, 0, 0)];//设置颜色为红色,三原色

CCSprite的层叠次序 (次序小的在下面,大的在上面)

[sprite zOrder]; //精灵层叠次序即Z轴(小的在下面,大的在上面),注意这是只读属性,不能通过sprite.zOrder=2实现Z轴重设

设置纹理大小

[sprite setTextureRect:CGRectMake(10, 10, 30, 30)];//起始点坐标(做上角坐标系),宽高

三、添加其他精灵

CCSprite继承自CCNode,所以你可以对它进行addChild的操作:

CCSprite *s1 = [CCSprite spriteWithFile:@"Icon.png"];

CCSprite *s2 = [CCSprite spriteWithFile:@"Icon.png"];

[s1 addChild:s2];

四、精灵Z轴重设

[self reorderChild:sprite z:10];//self为CCLayer或者CCNode

五、精灵换图

1、直接利用新建贴图进行更换

//更换贴图

CCTexture2D * texture =[[CCTextureCache sharedTextureCache] addImage: @"Default.png"];//新建贴图

[sprite setTexture:texture];

2、利用帧替换

//加载帧缓存

[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"MineSweeping.plist"];

//从帧缓存中取出Default.png

CCSpriteFrame* frame2 = [[CCSpriteFrameCache sharedSpriteFrameCache]    spriteFrameByName:@"Default.png"];

[sprite setDisplayFrame:frame2];

六、移除Sprite:

-(void)spriteMoveFinished:(id)sender {

CCSprite *sprite = (CCSprite *)sender;

[self removeChild:sprite cleanup:YES];

}

七、精灵批处理(Sprite Batching):

创建多个CCSprite节点,将它们添加到同一个CCSpriteBatchNode中以提高渲染速度

CCSpriteBatchNode* batch = [CCSpriteBatchNode batchNodeWithFile:@"bullet.png"];

[self addChild:batch];

for (int i = 0; i < 100; i++)

{

CCSprite* sprite = [CCSprite spriteWithFile:@"bullet.png"];

[batch addChild:bullet];

}

CCSprite* sprite = [CCSprite spriteWithFile:@"bullet.png"];

[batch addChild:bullet];

什么时候应该使用CCSpriteBatchNode

当你需要显示两个或者更多个相同的CCSprite节点时,你可以使用CCSpriteBatchNode。组合在一起的CCSprite节点越多,使用 CCSpriteBatchNode得到的效果提升就越大

出处:http://www.cocos2dchina.com/archives/323#more-323

时间: 2024-11-05 07:47:10

CCSprite的使用方法大全的相关文章

System.getProperty()方法大全

System.out.println("java版本号:" + System.getProperty("java.version")); // java版本号System.out.println("Java提供商名称:" + System.getProperty("java.vendor")); // Java提供商名称System.out.println("Java提供商网站:" + System.get

读取文件方法大全

原文链接:[Java]读取文件方法大全 - lovebread - 博客园 http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html 1.按字节读取文件内容2.按字符读取文件内容3.按行读取文件内容 4.随机读取文件内容 public class ReadFromFile {    /**     * 以字节为单位读取文件,常用于读二进制文件,如图片.声音.影像等文件.     */    public static voi

C#中MessageBox使用方法大全(附效果图)

我们在程序中常常会用到MessageBox. MessageBox.Show()共同拥有21中重载方法.现将其常见使用方法总结例如以下: 1.MessageBox.Show("Hello~~~~"); 最简单的,仅仅显示提示信息. 2.MessageBox.Show("There are something wrong!","ERROR"); 能够给消息框加上标题. 3.if (MessageBox.Show("Delete this

js刷新页面方法大全

本文介绍下,用js刷新当前页面的几种方法,包括reload方法.replace方法.自动刷新方法等.有需要的朋友参考下吧 如何实现刷新当前页面呢?借助js你将无所不能. 1,reload 方法,该方法强迫浏览器刷新当前页面.语法:location.reload([bForceGet]) 参数: bForceGet, 可选参数, 默认为 false,从客户端缓存里取当前页.true, 则以 GET 方式,从服务端取最新的页面, 相当于客户端点击 F5("刷新") 2,replace 方法

ModuleWorks免费下载使用方法大全

ModuleWorks为模拟机器的工具运转及(或)机床和车床材料的搬运提供了一整套解决方案. 模拟技术可以识别潜在的碰撞问题,允许在NC代码生成前进行除错检查,并且渐渐成为CAM处理方面必不可少的解决方法.图形处理及CPU技术的改进使在目前PC硬件上实现完全的模拟成为可能. 我们的解决方案可以提供类似与完整的现成品,或者是可以与您现有应用程序完美集成的API.模拟利用目标机床完整的动态模式,并且允许模仿任何机床工具的外形并模拟. ModuleWorks模拟技术共有三种,Machine模拟可完全模

js跳转页面方法大全

js跳转页面方法大全<span id="tiao">3</span><a href="javascript:countDown"></a>布丁足迹;秒后自动跳转--<meta http-equiv=refresh content=3;url='/search/billsearch.jsp'</ul> <!--脚本开始--> <script language="javascr

js正则验证方法大全

js正则验证方法大全 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

java file文件类操作使用方法大全

1.构造函数 [java] view plaincopy public class FileDemo { public static void main(String[] args){ //构造函数File(String pathname) File f1 =new File("c:\\zuidaima\\1.txt"); //File(String parent,String child) File f2 =new File("c:\\zuidaima",&quo

TelephonyManager类使用方法大全

这个类是很有用地,可以得到很多关于手机的信息,做应用时必须的工具. 不废话,直接上注释后的代码,请享用: <code> /** * *@author dingran *创建日期 2010-4-29 下午05:02:47 * */ package net.sunniwell.app; import android.app.Activity; import android.os.Bundle; import android.telephony.CellLocation; import androi