cocos2d对动画的各种操作

关于动画的各种操作,总结一下以便以后复习查找。


内容简要:

1、瞬时动作2、延时动作        3、 组合动作 4、动画

5、速度变化6、函数调用7、创建动作动画8、控制动画帧的速度


原文地址: http://blog.csdn.net/dingkun520wy/article/details/7014233

-----------------------------------------------------------------------------------------------------------------------------------------------------



瞬时动作:瞬时动作的基类是InstantAction

1、放置位置
  CGPoint p = ccp(width,height); 
  [sprite runAction:[CCPlace actionWithPosition:p]]; 
2、隐藏
  [sprite runAction:[CCHide action]];
3、显示
  [sprite runAction:[CCShow action]];
(效果类似亍 [node  setVisible:YES]. 之所以作为一个劢作来实现是为了可以不其
他劢作形成一个连续劢作)
4、可见切换
  [sprite runAction:[CCToggleVisibility action]]; 


延时动作:延时动作的基类是CCIntervalAction

  函数命名规则:
XxxxTo: 意味着运劢到指定癿位置。 
XxxxBy:意味着运劢到按照指定癿x、y增量癿位置。(x、y可以是负值) 
1、移动到 – CCMoveTo 
2、移动– CCMoveBy 
3、跳跃到 – CCJumpTo 设置终点位置和跳跃癿高度和次数。
4、跳跃 – CCJumpBy  设置终点位置和跳跃癿高度和次数。
5、贝塞尔 – CCBezierBy 支持3次贝塞尔曲线:P0-起点,P1-起点切线方向,P2-终  点切线方向,P3-终点。 首先设置定Bezier参数,然后执行。
6、放大到 – CCScaleTo 设置放大倍数,是浮点型。 
7、放大 – CCScaleBy 
8、旋转到 – CCRotateTo 
9、旋转 – CCRotateBy 
10、闪烁 – CCBlink 设定闪烁次数
11、色调变化到 – CCTintTo 
12、色调变换 – CCTintBy 
13、变暗到 – CCFadeTo 
14、由无变亮 – CCFadeIn 
15、由亮变无 – CCFadeOut

组合动作
1、序列-CCSequence
// 创建5个劢作 
  id ac0 = [sprite runAction:[CCPlace actionWithPosition:p]]; 
  id ac1 = [CCMoveTo actionWithDuration:2 position:ccp(50,50)]; 
  id ac2 = [CCJumpTo actionWithDuration:2 position:ccp(150,50) height:30 jumps:5]; 
  id ac3 = [CCBlink actionWithDuration:2 blinks:3]; 
  id ac4 = [CCTintBy actionWithDuration:0.5 red:0 green:255 blue:255]; 
  //将5个劢作组合为一个序列,注意丌要忘了用nil结尾。 
  [sprite runAction:[CCSequence actions:ac0, ac1, ac2, ac3, ac4, ac0, nil]]; 

2、同步-Spawn
  // 同步 劢作和组合劢作 以形成一个连续癿新劢作
  [sprite runAction:[CCSpawn actions:ac1, ac2, seq, nil]]; 

3、重复有限次数 -Repeate

  // 创建劢作序列 
  id ac1 = [CCMoveTo actionWithDuration:2 position:ccp( 50,50)]; 
  id ac2 = [CCJumpBy actionWithDuration:2 position:ccp(-400, -200) height:30 jumps:5]; 
  id ac3 = [CCJumpBy actionWithDuration:2 position:ccp(2, 0) height:20 jumps:3]; 
  id seq = [CCSequence actions:ac1, ac2, ac3, nil];  
  //  重复运行上述劢作序列3次。 
  [sprite runAction:[CCRepeat actionWithAction:seq times:3]];

4、反动作-Reverse
反动作就是反向(逆向)执行某个动作,支持针对动作序列癿反劢作序列。反动作
不是一个与门的类,而是CCFiniteAction引入的一个接口。不是所有的类都支持
反动作,XxxxTo类通常不支持反动作,XxxxBy类通常支持。

id ac1 = [CCMoveBy actionWithDuration:2 position:ccp(190,220)];
// 创建某个动作的反动作。   
id ac2 = [ac1 reverse];   
[sprite runAction:[CCRepeat actionWithAction:[CCSequence actions:ac1, ac2,nil] times:2]]; 



动画-Animation

CCAnimation *animation = [AtlasAnimation animationWithName:@"flight" delay:0.2f]; 
  // 每帧癿内容定义。 
  for(int i=0;i<3;i++) { 
    int x= i % 3; 
    [animation addFrameWithRect: CGRectMake(x*32, 0, 31, 30) ]; 
  }     
  // 执行劢画效果 
  id action = [CCAnimate actionWithAnimation: animation]; 
  [sprite runAction:[CCRepeat actionWithAction:action times:10]];

无限重复 - RepeatForever


// 将该动画作为精灵的本征动画,一直运行。 
  [sprite runAction:[RepeatForever actionWithAction:action]]; 

速度变化


1、EaseIn 由慢至快。 
2、EaseOut 由快至慢 
3、EaseInOut 由慢至快再由快至慢。 
4、EaseSineIn 由慢至快。
5、EaseSineOut 由快至慢 
6、EaseSineInOut 由慢至快再由快至慢。 
7、EaseExponentialIn 由慢至极快。 
8、EaseExponentialOut 由极快至慢。 
9、EaseExponentialInOut 由慢至极快再由极快至慢。 
10、Speed 人工设定速度,还可通过SetSpeed不断调整。


延时动作 - Delay

id ac1 = [CCMoveBy actionWithDuration:2 position:ccp(200, 200)]; 
id ac2 = [ac1 reverse]; 
// 实现一个等待间歇 
[sprite  runAction:[Sequence  actions:ac1,  [DelayTime actionWithDuration:1], ac2, nil]];

函数调用

  id ac1 = [CCMoveBy actionWithDuration:2 position:ccp(200, 200)]; 
  id ac2 = [ac1 reverse]; 
  id acf = [CCCallFunc actionWithTarget:self selector:@selector(CallBack1)]; 
   [sprite runAction:[CCSequence actions:ac1, acf, ac2, nil]];

1、带对象参数
id acf = [CallFuncN actionWithTarget:self selector:@selector(CallBack2:)];

- (void) CallBack2:(id)sender;
2、带对象、数据参数
id acf = [CCCallFuncND actionWithTarget:self selector:@selector(CallBack3:data:) data:(void*)2];

-(void) CallBack3:(id)sender data:(void*)data;



创建动作
1、利用文件名
CCAnimation*anim=[CCAnimationanimationWithFile:@"Jun"frameCount:12delay:0.1]; 
CCAnimate* animate = [CCAnimate actionWithAnimation:anim];
CCSequence *seq = [CCSequence actions:animate,nil]; 
CCRepeatForever* repeat = [CCRepeatForever actionWithAction:seq];
[sprite runAction:repeat];


2、利用缓存
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"Jun.plist"];      
anim=[CCAnimation animationWithFrame:@"Jun" frameCount:12 delay:0.1]; 
animate = [CCAnimate actionWithAnimation:anim];
seq = [CCSequence actions:animate,nil]; 
repeat = [CCRepeatForever actionWithAction:seq];
[sprite runAction:repeat]; 

控制动作的速度
1、创建
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"Jun.plist"];
CCSprite*sprite=[CCSprite spriteWithSpriteFrameName:@"Jun1.png"];
sprite.position=ccp(200,200);
[self addChild:sprite]; 
CCAnimation*anim=[CCAnimation animationWithFrame:@"Jun" frameCount:12 delay:0.1]; 
CCAnimate* animate = [CCAnimate actionWithAnimation:anim];
CCSequence *seq = [CCSequence actions:animate,nil]; 
//动作放入speed中
CCSpeed *speed =[CCSpeed actionWithAction:[CCRepeatForever actionWithAction:seq] speed:1.0f];
[speed setTag:66];
[Sprite runAction:speed];

2、改变
CCSpeed *speed=(CCSpeed*)[sprite getActionByTag:66];
[speed setSpeed:0.5];//放慢原有速度的0.5倍

转载于:https://www.cnblogs.com/java20130723/archive/2012/04/25/3212298.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/434568.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

matlab的灰色关联,五种灰色关联度分析matlab代码

《五种灰色关联度分析matlab代码》由会员分享&#xff0c;可在线阅读&#xff0c;更多相关《五种灰色关联度分析matlab代码(3页珍藏版)》请在人人文库网上搜索。1、灰色邓关联分析% p12-the study on the grey relational degree and its applicationFunction R1gld_deng(x)ssi…

Linux Kbuild文档 3

3. Kbuild Makefile Linux内核源代码是通过Makefile组织编译的&#xff0c;Linux2.6内核Makefile的许多特性和2.4内核差别很大&#xff0c;在内核目录的documention/kbuild/makefiles.txt中有详细的说明。 3.1 Makefile的组织结构 Linux内核的Makefile分为5个部分&#xff0…

SQL求解两个时间差

sql 求解两个时间差SELECTDATEDIFF( Second, 2009-8-25 12:15:12, 2009-9-1 7:18:20) --返回相差秒数SELECTDATEDIFF( Minute, 2009-9-1 6:15:12, 2009-9-1 7:18:20) --返回相差分钟数 SELECTDATEDIFF( Day, 2009-8-25 12:15:12,2009-9-1 7:18:20)--返回相差的天数SELEC…

matlab如何画一个平面,matlab 画平面

&period;framework使用注意、静态库配置及构架合成使用注意: 1.项目中使用的framework中包含了资源文件时,需要手动添加该framework中的资源文件 2.由于动态库(framework默认生成为动态库)不能上架,我们在生成的时候需要修改为 ...spring加载hibernate映射文件的几种方式 &…

Linux Kbuild文档 4

4. 一个使用linux kbuild实现可配置编译的例子 我编写了一个使用Linux kbuild机制实现可配置编译的小例子&#xff0c;工程名为print-example。包括如下如下几个目录&#xff1a; 其中scripts、Makefile、Makefile.flags是从busybox-1.9.0复制过来的。 4.1 运行print 运行m…

php标准输出重定向,python标准输出重定向方式

一. 背景在Python中&#xff0c;文件对象sys.stdin、sys.stdout和sys.stderr分别对应解释器的标准输入、标准输出和标准出错流。在程序启动时&#xff0c;这些对象的初值由sys.__stdin__、sys.__stdout__和sys.__stderr__保存&#xff0c;以便用于收尾(finalization)时恢复标准…

C# 温故而知新:Stream篇(六)

C# 温故而知新&#xff1a;Stream篇&#xff08;六&#xff09; BufferedStream 目录&#xff1a; 简单介绍一下BufferedStream如何理解缓冲区&#xff1f;BufferedStream的优势从BufferedStream 中学习装饰模式    如何理解装饰模式    再次理解下装饰模式在Stream中的…

Linux内核的Makefile和kconfig解读

一、概述 在内核编译中如何将各个目录树中的文件组织起来编译是一个很重要的问题&#xff0c;并且要根据用户配置来编译特有的内核。为了解决这个问题&#xff0c;内核使用两种文件&#xff0c;Makefie和Kconfig。分布到各目录的Kconfig构成了一个分布式的内核配置数据库&#…

网页快照

C#生成网站网页快照&#xff0c;Html转成图片2012-04-09 22:29HtmlToImg.cs using System; using System.Drawing; using System.Threading; using System.Windows.Forms; /// <summary> /// 生成网页快照 /// </summary> publicclassHtmlToImg { Bitmap m_Bitmap;…

php获取网页输出,PHP 利用AJAX获取网页并输出的实现代码(Zjmainstay)_PHP教程

看点&#xff1a;1、file_get_contents超时控制。2、页面编码判断。3、键盘Enter键捕捉响应。4、键盘event兼容处理。//event event || window.event;5、XMLHttpRequest 和 jQuery 两种实现方案。6、页面及源码同时展示。XMLHttpRequest版本 get_web.php复制代码 代码如下:hea…

HDU 3306 Another kind of Fibonacci

题意&#xff1a;A(0) 1 , A(1) 1 , A(N) X * A(N - 1) Y * A(N - 2) (N > 2)&#xff1b;给定三个值N&#xff0c;X&#xff0c;Y求S(N):S(N) A(0)2 A(1)2……A(n)2。 思路&#xff1a;原来我们讲的斐波那契数列是&#xff1a; F(0) 1, F(1) 1, F(N) F(N - 1) F(N…

php中拼接html代码,如何利用ajax给html动态拼接代码

function get_all_category_with_id() {$.ajax( {type: "get", url: "../../../appUpload/getAllCategoryByid", async : false, dataType: "text", success: function (data) {var obj JSON.parse(data);var str "";//先将元素对应清…

Arm Linux交叉编译和连接过程分析(1)

一、配置内核&#xff08;Kconfig&#xff09; 我们配置内核是实质是根据众多目录下面的Kconfig文件中组合成我们需要的一个最佳选择&#xff0c;即最终在根目录下面生成的.config文件&#xff0c;而这个文件会在根目录Makefile下调用的。这一部分我们主要讨论整个SEP4020体系…

struts2标签_select获取action传过来的值

<s:select list"#session.userlist" //从Action传过来的键(属性)的名称headerKey"请选择" //默认选中项的值headerValue"请选择" //默认选中项显示的信息listKey"project_id" …

3500 yuan to php,350 CNY to PHP Currency Converter - 人民币 菲律宾比索 汇率兑换

Exchange350 CNY2612.29 PHPExchange 350 人民币2612.29 菲律宾比索Exchange1750 CNY13061.46 PHPExchange 1750 人民币13061.46 菲律宾比索Exchange3500 CNY26122.92 PHPExchange 3500 人民币26122.92 菲律宾比索Exchange17500 CNY130614.62 PHPExchange 17500 人民币130614.6…

Arm Linux交叉编译和连接过程分析(2)

二、编译内核镜像过程 1、编译过程中涉及到到文件&#xff1a; /Makefile 编译产生顶层vmlinux镜像文件/scripts/Kbuild.include make过程中到一些基本定义 /scripts/Makefile.lib 编译内核时用到到函数库文件 /scripts/Makefile.build 内核编译到相关命令文件…

sipxecs简介

SipX和SipExchange的代码于2007年合并成SipXecs&#xff0c;北电和NTT等大公司参与构建SipXecs架构。SipXecs是电信级的&#xff0c;针对统一通信UC和呼叫中心Call Center应用&#xff0c;另外&#xff0c;支持设备批量升级&#xff0c;批量配置管理等应用&#xff0c;网管支持…

ASP.NET数据格式的Format-- DataFormatString

我们在呈现数据的时候&#xff0c;不要将未经修饰过的数据呈现给使用者。例如金额一万元&#xff0c;如果我们直接显示「10000」&#xff0c;可能会导致使用者看成一千或十万&#xff0c;造成使用者阅读数据上的困扰。若我们将一万元润饰后输出为「NT$10,000」&#xff0c;不但…

fortran转换 matlab代码,将Fortran77代码转换为Matlab代码以查找特征值/向量

我将Fortran 77中的书面代码转换为Matlab代码。该函数使用QL算法计算矩阵的特征值和特征向量。由于某些原因&#xff0c;我不能在matlab中使用eig函数的结果。这种方法得到的特征值与eig函数得到的特征值不一样&#xff0c;有些相同但有些不同。我不知道问题在哪里。感谢您的任…

linux内核中分配4M以上大内存的方法

在内核中, kmalloc能够分配的最大连续内存为2的(MAX_ORDER-1)次方个page(参见alloc_pages函数, "if (unlikely(order > MAX_ORDER)) return NULL;"), page的大小一般是4K bytes,MAX_ORDER缺省定义为11, 所以如果不修改内核, kmalloc能够分配的最大连续…