Unity3d-仿写简单dotween C#扩展方法协程单例工厂

dotween官网

先验知识:Unity3d-Coroutines协程

Unity3d-C#扩展方法

dotween

在我的理解,dotween是一个扩展方法库,帮我们扩展了变换的方法,我们使得能够通过如transform.DoMove(vec3,time)这样简单的函数调用,实现在时间时间内移动到VEC3位置的动画效果。这次的仿写简单dotween本质上是使用了扩展方法和协程来实现。

这次实现的功能是dotween对象的管理以及使用dotween管理暂停,播放和杀对应动作,实现回调.dotween和动作对应的协程是一一对应的关系。

dotween对象

dotween对象对应的是对应动作的协程。通过改变成员变量中的isPause和autoKill可以决定对应的协程是否停止,dotween对象是否在执行完之后自动销毁。在扩展方法中,每次调用变换的扩展方法,就会产生一个对应的dotween,和一个协程.dotween在构造的时候会自动添加到Dotween工厂的列表中管理。

publicclassdotween{publicstringname;publicCoroutinecoroutine=null;publicTransformtransform=null;publicVector3target;publicfloattime;publicboolisPause=false;publicboolautoKill=true;publicdelegatevoidOnComplete();publicOnCompleteonComplete=null;publicdotween(stringn,Transformtrans,Vector3tar,floatt,Coroutineco){name=n;transform=trans;target=tar;time=t;//添加到工厂中管理Dotween.getInstance().Add(this);}publicvoidsetCoroutine(Coroutineco){coroutine=co;}publicvoidKill(){MonoBehaviourmono=transform.GetComponent();mono.StopCoroutine(coroutine);//生命周期结束,从工厂中删除Dotween.getInstance().Remove(this);}publicvoidPlay(){isPause=false;}publicvoidPause(){isPause=true;}//设置回调函数,可以设置多个回调函数publicvoidsetOnComplete(OnCompletefun){onComplete+=fun;}publicvoidrunOnComplete(){if(onComplete!=null){onComplete();}if(autoKill){Kill();}}//设置执行完动作后是否自动销毁publicvoidsetAutoKill(boolb){autoKill=b;}}

Dotween工厂

Dotween工厂的作用是管理所有的dotween,将他们保存在列表中,可以通过工厂让同一名字的动作一起暂停,播放,销毁。又或者让一个对象的所有动作停止,播放,销毁。

publicclassDotween{privatestaticListdotList=newList();privatestaticDotweendot=null;publicstaticDotweengetInstance(){if(dot==null){dot=newDotween();}returndot;}//添加一个dotween对象到列表中publicvoidAdd(dotweend){dotList.Add(d);}//从列表中删除一个dotween对象publicvoidRemove(dotweend){dotList.Remove(d);}//暂停publicstaticvoidPauseAll(){for(inti=dotList.Count-1;i>=0;i--){dotList[i].Pause();}}publicstaticvoidPause(stringname){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].name==name){dotList[i].Pause();}}}publicstaticvoidPause(Transformtransform){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].transform==transform){dotList[i].Pause();}}}//播放publicstaticvoidPlayAll(){foreach(dotweendindotList){d.Play();}}publicstaticvoidPlay(stringname){foreach(dotweendindotList){if(d.name==name){d.Play();}}}publicstaticvoidPlay(Transformtransform){foreach(dotweendindotList){if(d.transform==transform){d.Play();}}}//销毁publicstaticvoidKillAll(){for(inti=dotList.Count-1;i>=0;i--){dotList[i].Kill();}}publicstaticvoidKill(stringname){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].name==name){dotList[i].Kill();}}}publicstaticvoidKill(Transformtransform){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].transform==transform){dotList[i].Pause();}}}}

扩展方法

有了dotween和Dotween来管理我们的动作后,我们可以编写对应的扩展函数库了。

publicstaticclassextension_method{//DoMove扩展方法(MonoBehaviour,Transform)//通过time秒移动到指定的位置targetpublicstaticIEnumeratorDoMove(thisMonoBehaviourmono,dotweendot){//根据目标和现在的位置,按时间长度算出速度Vector3distance=(dot.target-dot.transform.position)/dot.time;for(floatf=dot.time;f>=0.0f;f-=Time.deltaTime){dot.transform.Translate(distance*Time.deltaTime);yieldreturnnull;//根据dotween确认状态while(dot.isPause==true){yieldreturnnull;}}//动作结束调用回调函数dot.runOnComplete();}publicstaticdotweenDoMove(thisTransformtransform,Vector3target,floattime){MonoBehaviourmono=transform.GetComponents()[0];//新建dotweendotweendot=newdotween("DoMove",transform,target,time,null);//创建协程Coroutinecoroutine=mono.StartCoroutine(mono.DoMove(dot));//给dotween设置对应协程dot.setCoroutine(coroutine);returndot;}}

这就成功扩展了一个DoMove函数,要扩展更多的函数,只要记得同样的步骤(创建dotween对象,创建协程,给dotween设置协程,在协程中确认状态,调用回调函数)就可以写。出更多的扩展方法例如扩展一个DoScale:

//DoScale扩展方法(MonoBehaviour,Transform)//通过time秒放大到特定倍数targetpublicstaticIEnumeratorDoScale(thisMonoBehaviourmono,dotweendot){Vector3distance=(dot.target-dot.transform.localScale)/dot.time;for(floatf=dot.time;f>=0.0f;f-=Time.deltaTime){dot.transform.localScale=dot.transform.localScale+distance*Time.deltaTime;yieldreturnnull;while(dot.isPause==true){yieldreturnnull;}}dot.runOnComplete();}publicstaticdotweenDoScale(thisTransformtransform,Vector3target,floattime){MonoBehaviourmono=transform.GetComponents()[0];dotweendot=newdotween("DoScale",transform,target,time,null);Coroutinecoroutine=mono.StartCoroutine(mono.DoScale(dot));dot.setCoroutine(coroutine);returndot;}

使用

完成了扩展之后,我们就可以在我们的脚本中调用对应的扩展函数,轻松实现运动效果。

publicclasstest:MonoBehaviour{dotweendot;// Use this for initializationvoidStart(){dot=transform.DoMove(newVector3(1,1,1),10.0f);transform.DoScale(newVector3(2,2,2),10.0f);transform.DoPause(5.0f);dot.setOnComplete(fun);}voidfun(){Debug.Log("onComplete");}// Update is called once per framevoidUpdate(){}}

效果:

完整的Dotween.cs代码:

usingUnityEngine;usingSystem.Collections;usingSystem.Collections.Generic;publicclassDotween{privatestaticListdotList=newList();privatestaticDotweendot=null;publicstaticDotweengetInstance(){if(dot==null){dot=newDotween();}returndot;}//添加一个dotween对象到列表中publicvoidAdd(dotweend){dotList.Add(d);}//从列表中删除一个dotween对象publicvoidRemove(dotweend){dotList.Remove(d);}//暂停publicstaticvoidPauseAll(){for(inti=dotList.Count-1;i>=0;i--){dotList[i].Pause();}}publicstaticvoidPause(stringname){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].name==name){dotList[i].Pause();}}}publicstaticvoidPause(Transformtransform){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].transform==transform){dotList[i].Pause();}}}//播放publicstaticvoidPlayAll(){foreach(dotweendindotList){d.Play();}}publicstaticvoidPlay(stringname){foreach(dotweendindotList){if(d.name==name){d.Play();}}}publicstaticvoidPlay(Transformtransform){foreach(dotweendindotList){if(d.transform==transform){d.Play();}}}//销毁publicstaticvoidKillAll(){for(inti=dotList.Count-1;i>=0;i--){dotList[i].Kill();}}publicstaticvoidKill(stringname){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].name==name){dotList[i].Kill();}}}publicstaticvoidKill(Transformtransform){for(inti=dotList.Count-1;i>=0;i--){if(dotList[i].transform==transform){dotList[i].Pause();}}}}publicclassdotween{publicstringname;publicCoroutinecoroutine=null;publicTransformtransform=null;publicVector3target;publicfloattime;publicboolisPause=false;publicboolautoKill=true;publicdelegatevoidOnComplete();publicOnCompleteonComplete=null;publicdotween(stringn,Transformtrans,Vector3tar,floatt,Coroutineco){name=n;transform=trans;target=tar;time=t;//添加到工厂中管理Dotween.getInstance().Add(this);}publicvoidsetCoroutine(Coroutineco){coroutine=co;}publicvoidKill(){MonoBehaviourmono=transform.GetComponent();mono.StopCoroutine(coroutine);//生命周期结束,从工厂中删除Dotween.getInstance().Remove(this);}publicvoidPlay(){isPause=false;}publicvoidPause(){isPause=true;}//设置回调函数,可以设置多个回调函数publicvoidsetOnComplete(OnCompletefun){onComplete+=fun;}publicvoidrunOnComplete(){if(onComplete!=null){onComplete();}if(autoKill){Kill();}}//设置执行完动作后是否自动销毁publicvoidsetAutoKill(boolb){autoKill=b;}}publicstaticclassextension_method{//DoMove扩展方法(MonoBehaviour,Transform)//通过time秒移动到指定的位置targetpublicstaticIEnumeratorDoMove(thisMonoBehaviourmono,dotweendot){//根据目标和现在的位置,按时间长度算出速度Vector3distance=(dot.target-dot.transform.position)/dot.time;for(floatf=dot.time;f>=0.0f;f-=Time.deltaTime){dot.transform.Translate(distance*Time.deltaTime);yieldreturnnull;//根据dotween确认状态while(dot.isPause==true){yieldreturnnull;}}//动作结束调用回调函数dot.runOnComplete();}publicstaticdotweenDoMove(thisTransformtransform,Vector3target,floattime){MonoBehaviourmono=transform.GetComponents()[0];//新建dotweendotweendot=newdotween("DoMove",transform,target,time,null);//创建协程Coroutinecoroutine=mono.StartCoroutine(mono.DoMove(dot));//给dotween设置对应协程dot.setCoroutine(coroutine);returndot;}//DoScale扩展方法(MonoBehaviour,Transform)//通过time秒放大到特定倍数targetpublicstaticIEnumeratorDoScale(thisMonoBehaviourmono,dotweendot){Vector3distance=(dot.target-dot.transform.localScale)/dot.time;for(floatf=dot.time;f>=0.0f;f-=Time.deltaTime){dot.transform.localScale=dot.transform.localScale+distance*Time.deltaTime;yieldreturnnull;while(dot.isPause==true){yieldreturnnull;}}dot.runOnComplete();}publicstaticdotweenDoScale(thisTransformtransform,Vector3target,floattime){MonoBehaviourmono=transform.GetComponents()[0];dotweendot=newdotween("DoScale",transform,target,time,null);Coroutinecoroutine=mono.StartCoroutine(mono.DoScale(dot));dot.setCoroutine(coroutine);returndot;}}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351

推荐阅读更多精彩内容

  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,605评论 18 399
  • 一. Java基础部分.................................................
    wy_sure阅读 3,807评论 0 11
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • 后腰松 出步 不用膝盖 而是缩跨过去 往下放而不是往后放
    日出东方天刚晓阅读 175评论 0 0
  • 不知道是不是因为大姨妈的原因,心情总是很不好。 为什么总有人要强迫别人做你一再拒绝的事,人的内在需求是什么正常...
    菠萝房的秘密阅读 734评论 0 0