1、GoKit

免费开源

AssetStore:https://www.assetstore.unity3d.com/en/#!/content/3663

下载地址:https://github.com/prime31/GoKit

2、ITween

免费开源

官网:http://itween.pixelplacement.com/index.php

AssetStore:https://www.assetstore.unity3d.com/en/#!/content/84

下载地址:https://github.com/jtothebell/iTween

缺点:

  1. 大量使用SendMessage,而SendMessage使用反射,效率不高
  2. iTween的参数都是string,你需要自己去拼一个Hashtable,去记字符串,不人性化!每次写都要去它的官网上去查字符串怎么拼,挺蛋疼的!

3、LeanTween

免费开源

AssetStore:https://www.assetstore.unity3d.com/en/#!/content/3595

下载地址:https://github.com/dentedpixel/LeanTween

优点:貌似比Hotween和Itween性能好,快!参考:http://dentedpixel.com/developer-diary/leantween-speed-comparison-to-itween/

4、Hotween

免费开源

官网:http://hotween.demigiant.com/

AssetStore:https://www.assetstore.unity3d.com/en/#!/content/3311

下载地址:http://hotween.demigiant.com/

5、DOTween

这是Hotween官网出的,速度超过4倍更快,更高效,大量的新功能

下载地址:http://dotween.demigiant.com/download.php#download

Comparison with other engines

If you want, you can download the test package I used (oops sorry, I'll put it up there when I get into beta, otherwise I should update it every hour - but you can still get the most recent one from DOTween's Google Code area).

All these tests were done from a build, since some of these tween engines (DOTween, HOTween and GoKit) do additional stuff while in the Editor to show editor-only debug informations, and thus testing them outside the editor, where it counts, seemed more fair.

To keep the test accurate download the latest versions of all engines and replace the old ones (the ones used here are from July/August 2014).

Generic floats

You'll find more tests for the tween of generic floats because GoKit and iTween couldn't tween as many as the other engines, but I still wanted to show high-level results.

64,000 generic floats in a loop

  DOTween HOTween LeanTween GoKit iTween
Average FPS 124 FPS 25 FPS 102 FPS freezes freezes
Startup time 76 MS 332 MS 34 MS freezes freezes

16,000 generic floats in a loop

  DOTween HOTween LeanTween GoKit iTween
Average FPS 412 FPS 115 FPS 389 FPS 387 FPS freezes
Startup time 14 MS 74 MS 7 MS 47,432 MS freezes

2,000 generic floats in a loop

  DOTween HOTween LeanTween GoKit iTween
Average FPS 1091 FPS 888 FPS 1050 FPS 998 FPS 3 FPS
Startup time 2 MS 11 MS 1 MS 6,258 MS 240 MS

Transforms

4,000 transforms looping around

  DOTween HOTween LeanTween GoKit iTween
Average FPS 68 FPS 63 FPS 68 FPS 65 FPS 38 FPS
Startup time 5 MS 30 MS 3 MS 130 MS 229 MS

实现人物沿四个点移动,实现这同一效果,代码分别为:

public class MyDotween : MonoBehaviour
{
public Transform[] paths;
void Start()
{
Vector3[] v = new Vector3[];
for (int i = ; i < paths.Length; i++)
{
v[i] = paths[i].position;
}
transform.DOPath(v, 3f, PathType.Linear).SetLookAt(-).SetDelay(1f).SetEase(Ease.Linear).OnComplete(ItweenAnimationEnd);
}
//对象移动时调用
void ItweenAnimationEnd()
{
Debug.Log("end : ");
}
}

Dotween

public class MyLeanTween : MonoBehaviour
{
public Transform[] paths;
void Start()
{
//四个点的话,那么应该是这样确定点的位置,并且数组长度必须是4的倍数:
// O(对象自己的位置)->A A->B B->C C->D
Vector3[] v = new Vector3[];
v[] = transform.position;
for (int i = ; i < paths.Length; i++)
{
v[i * + ] = paths[i].position;
if (i == )
continue;
v[i * + ] = paths[i].position;
}
Hashtable args = new Hashtable();
args.Add("path", v);
//是否让模型始终面朝当面目标的方向
args.Add("orientToPath", true);
//移动结束时调用,参数和上面类似
args.Add("onComplete", "LeanAnimationEnd");
args.Add("onCompleteParam", "zwh");
//设置类型为线性,线性效果会好一些。
args.Add("loopType", LeanTweenType.linear);
//设置延迟
args.Add("delay", 1f);
//设置循环
args.Add("repeat", );
LeanTween.move(gameObject, v, 3f, args);
}
//对象移动时调用
void LeanAnimationEnd(object obj)
{
Debug.Log("end : " + obj);
}
}

LeanTween

public class MyGoKit : MonoBehaviour
{
public Transform[] paths;
void Start()
{
Vector3[] v = new Vector3[];
v[] = transform.position;//设置自身的位置为第一个位置,因为没有像ITween中的movetopath选项可以设置
for (int i = ; i < paths.Length; i++)
{
v[i + ] = paths[i].position;
}
GoTweenConfig config = new GoTweenConfig();
//设置路径的点
var path = new GoSpline(v, true);
//设置类型为线性,线性效果会好一些。
config.easeType = GoEaseType.Linear;
//GoLookAtType.NextPathNode是和ITween的orienttopath设置功能是一样的
config.positionPath(path, false, GoLookAtType.NextPathNode);
//设置循环
config.setIterations();
config.onComplete(delegate(AbstractGoTween obj)
{
Debug.Log("end : " + obj);
}); //这里to方法的第一个参数必须传transform类型的变量,不然报错
Go.to(gameObject.transform, 3f, config);
} void OnDrawGizmos()
{
//在scene视图中绘制出路径与线
iTween.DrawLine(paths, Color.yellow); iTween.DrawPath(paths, Color.red);
}
}

GoKit

public class MyHotween : MonoBehaviour
{
public Transform[] paths;
void Start()
{
Vector3[] v = new Vector3[];
for (int i = ; i < paths.Length; i++)
{
v[i] = paths[i].position;
}
TweenParms tp = new TweenParms();
tp.Delay(1f);
tp.Loops();
tp.OnComplete(PathCycleComplete, "zwh");
tp.Ease(EaseType.Linear);
PlugVector3Path p = new PlugVector3Path(v, PathType.Linear);
p.OrientToPath(true);
tp.Prop("position", p);
HOTween.To(gameObject.transform, , tp); } void PathCycleComplete(TweenEvent abc)
{
Debug.Log("end : " + abc.parms[]);
}
}

Hotween

public class MyItween : MonoBehaviour
{
//路径寻路中的所有点
public Transform[] paths; void Start()
{
Hashtable args = new Hashtable();
//设置路径的点
args.Add("path", paths); //设置类型为线性,线性效果会好一些。
args.Add("easeType", iTween.EaseType.linear); //设置寻路的速度
args.Add("speed", 6f); //是否先从原始位置走到路径中第一个点的位置
args.Add("movetopath", true); //是否让模型始终面朝当面目标的方向
//如果你发现你的模型在寻路的时候时钟都是一个方向那么一定要打开这个
args.Add("orienttopath", true); //移动结束时调用,参数和上面类似
args.Add("oncomplete", "ItweenAnimationEnd");
args.Add("oncompleteparams", "zwh");
args.Add("oncompletetarget", gameObject); //让模型开始寻路
iTween.MoveTo(gameObject, args);
}
//对象移动时调用
void ItweenAnimationEnd(string f)
{
Debug.Log("end : " + f);
}
void OnDrawGizmos()
{
//在scene视图中绘制出路径与线
iTween.DrawLine(paths, Color.yellow); iTween.DrawPath(paths, Color.red);
}
}

Itween

总结:

从以上分析,Dotween和Leantween效率比较好,但是从代码角度看,Dotween代码可读性强,体现了面向对象的思想,而Leantween仍然要死记字符串!

参考:http://www.xuanyusong.com/archives/2671

http://dotween.demigiant.com/index.php

Unity-Tween的更多相关文章

  1. iTween for Unity

    你曾经在你的游戏中制作过动画吗?问这个问题可能是愚蠢的,几乎每个Game都有动画,虽然有一些没有,但你必须处理有动画和没有动画.让我们结识 ITween. iTween 官方网站:http://itw ...

  2. 【转】iTween for Unity

    http://www.cnblogs.com/zhaoqingqing/p/3833321.html?utm_source=tuicool&utm_medium=referral 你曾经在你的 ...

  3. Unity NGUI Tween的用法

    unity版本:4.5 NGUI版本:3.6.5 参考链接:http://www.colabug.com/thread-1029974-1-1.html,作者:COLABUG.COM 橘虞   htt ...

  4. Unity该插件NGUI得知(9)—— Tween并转换成世界坐标系的大小NGUI尺寸

    在游戏中,还有一种比较常见的动画,这是进球后产生,分数将被显示在游戏,而快速移动,使其失去位置加入.就打算使用NGUI的Tween来制作这样的分数动画效果. 依据 Unity插件之NGUI学习(2), ...

  5. Unity NGUI Tween动画回调不执行问题

    最近工作中遇到了一个问题 NGUI的Tween动画完成 回调函数 偶尔不执行 偶现Bug 今天我仔细看了下代码发现 TweenPosition tempTween = varTar.GetCompon ...

  6. 关于Unity中NGUI的帧动画和Tween动画

    帧动画 1.把三张帧动画的贴图png制作成图集,NGUI---->Open---->Atlas Maker,生成一个预制体,一个材质球,一个大图 2.创建一个Sprite类型的Sprite ...

  7. 【Unity3D基础教程】给初学者看的Unity教程(零):如何学习Unity3D

    作者:王选易,出处:http://www.cnblogs.com/neverdie/ 欢迎转载,也请保留这段声明.如果你喜欢这篇文章,请点推荐.谢谢! Unity3D有什么优势 Unity3D是一个跨 ...

  8. Unity开发之NGUI系列

    Unity插件收集 在Unity开发过程中会收集一些插件,收集这些插件的目的并不是我喜欢在开发中使用插件,而是本着喜欢的态度去收集的,就像我喜欢收集模型一样: 还有一点就是通过了解插件能让我知道Uni ...

  9. C#程序员整理的Unity 3D笔记(十五):Unity 3D UI控件至尊–NGUI

    目前,UGUI问世不过半年(其随着Unity 4.6发布问世),而市面上商用的产品,UI控件的至尊为NGUI:影响力和广度(可搜索公司招聘Unity 3D,常常能看到对NGUI关键词). NGUI虽然 ...

  10. Unity 通过Animation实现控件位置的转换

    Unity版本:4.5.1 NGUI版本:3.6.5 参考链接:http://blog.csdn.net/unity3d_xyz/article/details/23035521,作者:CSDN in ...

随机推荐

  1. JS原生父子页面操作

    var api = frameElement.api;  //当前 W = api.opener;//父页面 W.setPerSel(jsonStr); api.close(); //关闭窗口 js操 ...

  2. 使用js使某个按钮在5秒内不能重复点击

    <head> <!--参考:http://illy.iteye.com/blog/1534276 --> <!-- http://y.dobit.top/Detail/1 ...

  3. 【译】Design For Maturing Android-为日渐成熟的Android做设计

    为日渐成熟的Android做设计 [声明] 本篇博文英文版原文来自Smashing Magazine,本人经Smashing Magazine邮件授权后翻译,转载请注明出处.谢谢!原文地址. 我将不定 ...

  4. matlab建立双坐标

    (1)设定双Y坐标 x=0:0.1:2*pi; y1=sin(x); y2=cos(x); y3=1-sin(x); [AX]=plotyy(x,y1,x,y2); %双Y坐标的建立 hold on; ...

  5. linux内核分析 第4章读书笔记

    第四章 进程调度 一.抢占与非抢占 1.非抢占式进程调度 进程会一直执行直到自己主动停止运行 2.抢占式进程调度 Linux/Unix使用的是抢占式的方式,强制的挂起进程的动作就叫做抢占. 二.进程优 ...

  6. Jenkins进阶系列之——10Publish Over SSH插件

    说明:这个插件可以通过ssh连接其他Linux机器 官方说明:Publish Over SSH 安装步骤: 系统管理→管理插件→可选插件→Artifact Uploaders→Publish Over ...

  7. 学习笔记——Maven实战(四)基于Maven的持续集成实践

    Martin的<持续集成> 相信很多读者和我一样,最早接触到持续集成的概念是来自Martin的著名文章<持续集成>,该文最早发布于2000年9月,之后在2006年进行了一次修订 ...

  8. SpringMVC重定向视图RedirectView小分析

    目录 前言 RedirectView介绍 实例讲解 总结 前言 SpringMVC是目前主流的Web MVC框架之一. 如果有同学对它不熟悉,那么请参考它的入门blog:http://www.cnbl ...

  9. WIN7下USB多点触摸,一次发多个数据包的延迟问题,重要!

    这个问题很常见, 花了差不多一个星期时间来解决.硬件相关的东西太多坑了,而且这些坑不像代码那样可见.   使用混合模式,每次最多报告2个点.如果是5点则需要上报三次. 问题就来了,atmel的CTP最 ...

  10. webSocket实现web及时聊天的例子

    概述 websocket目前虽然无法普及应用,未来是什么样子,我们不得而知,但现在开始学习应用它,只有好处没有坏处,本随笔的WebSocket是版本13(RFC6455)协议的实现,也是目前webso ...