Class FadeAnimation

All Implemented Interfaces:
Updatable

public class FadeAnimation extends Animation<Shape>
  • Field Details

  • Constructor Details

    • FadeAnimation

      public FadeAnimation(Shape target, int targetAlpha)
    • FadeAnimation

      public FadeAnimation(Shape target, int targetAlpha, int runtime)
    • FadeAnimation

      public FadeAnimation(Shape target, int runtime, DoubleUnaryOperator easing)
    • FadeAnimation

      public FadeAnimation(Shape target, int targetAlpha, 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.