Beispiel #1
0
 public static T Animate <T>(this ISimpleAnim <T> animator, T value)
 {
     animator.value = value;
     animator.Update();
     return(animator.value);
 }
Beispiel #2
0
 public static void RefAnim <T>(this ISimpleAnim <T> animator, ref T value)
 {
     animator.value = value;
     animator.Update();
     value = animator.value;
 }