csharp [WIP] NGUIのDOTween対応したエクステンション

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp [WIP] NGUIのDOTween対応したエクステンション相关的知识,希望对你有一定的参考价值。

using DG.Tweening;

public static  class DOTweenNGUIExtensions
{
	public static Tweener DOFade (this UIPanel p, float endValue, float duration)
	{
		return DOTween.To (() => p.alpha, x => p.alpha = x, endValue, duration);
	}

	public static Tweener DOFade (this UIWidget p, float endValue, float duration)
	{
		return DOTween.To (() => p.alpha, x => p.alpha = x, endValue, duration);
	}
}

以上是关于csharp [WIP] NGUIのDOTween対応したエクステンション的主要内容,如果未能解决你的问题,请参考以下文章

csharp 团结/ dotween /基本

csharp DOTweenカスタムイージング

csharp [WIP] Unity Bezier

csharp [WIP]クリスマスっぽい何かを作っている

Unity NGUI TWEEN

csharp オバケはDOTween.Sequenceで不透明度変更を缲り返す。倒されたら序列を止める