Ejemplo n.º 1
0
 public static IObservable <Vector2> PlayRelative(this Vector2 source, Vector2 relative, IAnimator animator, IScheduler scheduler)
 {
     return(Anime.PlayRelative(source, relative, animator, scheduler));
 }
Ejemplo n.º 2
0
 public static IObservable <float> PlayRelative(this float source, float relative, IAnimator animator, IScheduler scheduler)
 {
     return(Anime.PlayRelative(source, relative, animator, scheduler));
 }
Ejemplo n.º 3
0
 public static IObservable <Vector2> Play(this Vector2 source, Vector2 to, IAnimator animator, IScheduler scheduler)
 {
     return(Anime.Play(source, to, animator, scheduler));
 }
Ejemplo n.º 4
0
 public static IObservable <float> Play(this float source, float to, IAnimator animator, IScheduler scheduler)
 {
     return(Anime.Play(source, to, animator, scheduler));
 }