diff --git a/src/main/java/schule/ngb/zm/anim/Animations.java b/src/main/java/schule/ngb/zm/anim/Animations.java index 0c4d28a..c1b3446 100644 --- a/src/main/java/schule/ngb/zm/anim/Animations.java +++ b/src/main/java/schule/ngb/zm/anim/Animations.java @@ -179,14 +179,14 @@ public class Animations { return target; } - public static final Future animate( T target, int runtime, Animator animator ) { + /*public static final Future animate( T target, int runtime, Animator animator ) { return animate( target, runtime, animator::easing, animator::interpolator, animator::applicator ); - } + }*/ public static Future> animate( Animation animation ) { return TaskRunner.run(new FramerateLimitedTask() { diff --git a/src/main/java/schule/ngb/zm/anim/Animator.java b/src/main/java/schule/ngb/zm/anim/Animator.java deleted file mode 100644 index 951279d..0000000 --- a/src/main/java/schule/ngb/zm/anim/Animator.java +++ /dev/null @@ -1,11 +0,0 @@ -package schule.ngb.zm.anim; - -public interface Animator { - - double easing(double t); - - R interpolator(double e); - - void applicator(T target, R value); - -}