Class MoveAnimation

All Implemented Interfaces:
Updatable

public class MoveAnimation extends Animation<Shape>
  • Constructor Details

    • MoveAnimation

      public MoveAnimation(Shape target, double targetX, double targetY, int runtime, DoubleUnaryOperator easing)
  • Method Details

    • initialize

      public void initialize()
      Overrides:
      initialize in class Animation<Shape>
    • getAnimationTarget

      public Shape getAnimationTarget()
      Specified by:
      getAnimationTarget in class Animation<Shape>
    • animate

      public void animate(double e)
      Description copied from class: Animation
      Setzt den Fortschritt der Animation auf den angegebenen Wert.

      e liegt in der Regel zwischen 0 und 1. Je nach verwendeten Easing Funktion kann der Wert aber in Ausnahmefällen unter 0 oder über 1 liegen. Die step() Methode muss dem nicht Rechnung tragen und kann wenn sinnvoll den e Wert auf [0, 1] limitieren:

      
       e = Constants.limit(e, 0, 1);
       
      Specified by:
      animate in class Animation<Shape>
      Parameters:
      e - Fortschritt der Animation, nachdem die Easing-Funktion angewandt wurde.