static public UCL_Tweener Tweener(float duration) { var obj = UCL_Tweener.CreateTweener(); obj.SetDuration(duration); return(obj); }
static public UCL_Tweener TweenerMs(long durationMs) { var obj = UCL_Tweener.CreateTweener(); obj.DurationMs = durationMs; return(obj); }
static public UCL_Tweener Tweener() { return(UCL_Tweener.CreateTweener()); }