Exemple #1
0
 public static SimpleTweener <T> SetDuration <T>(this SimpleTweener <T> tweenAble, float duration)
 {
     tweenAble.Duration = duration;
     return(tweenAble);
 }
Exemple #2
0
 public static SimpleTweener <T> SetFrom <T>(this SimpleTweener <T> tweenAble, T value)
 {
     tweenAble.FromValue = value;
     return(tweenAble);
 }
Exemple #3
0
 public static SimpleTweener <T> SetTweenFunction <T>(this SimpleTweener <T> tweenAble, SimpleTweener <T> .TweenFunctionDelegate tweenFunction)
 {
     tweenAble.TweenFunction = tweenFunction;
     return(tweenAble);
 }