Exemplo n.º 1
0
        static public UCL_Tweener Tweener(float duration)
        {
            var obj = UCL_Tweener.CreateTweener();

            obj.SetDuration(duration);
            return(obj);
        }
Exemplo n.º 2
0
        static public UCL_Tweener TweenerMs(long durationMs)
        {
            var obj = UCL_Tweener.CreateTweener();

            obj.DurationMs = durationMs;
            return(obj);
        }
Exemplo n.º 3
0
 static public UCL_Tweener Tweener()
 {
     return(UCL_Tweener.CreateTweener());
 }