Package ea.animation

Class KeyFrame<Value extends Number>

java.lang.Object
ea.animation.KeyFrame<Value>
Type Parameters:
Value - Werttyp, der animiert werden soll.
All Implemented Interfaces:
Comparable<KeyFrame<Value>>

public class KeyFrame<Value extends Number> extends Object implements Comparable<KeyFrame<Value>>
Beschreibt einen Keyframe.
Author:
Michael Andonie
  • Constructor Details

    • KeyFrame

      @API public KeyFrame(Value value, KeyFrame.Type type, float timecode)
      Erstellt einen Keyframe
      Parameters:
      type - Der Typ des Keyframes
      timecode - Der Timecode des Keyframes
  • Method Details

    • setValue

      @API public void setValue(Value value)
    • getValue

      @API public Value getValue()
    • setType

      @API public void setType(KeyFrame.Type type)
    • getType

      @API public KeyFrame.Type getType()
    • setTimecode

      @API public void setTimecode(float timecode)
    • getTimecode

      @API public float getTimecode()
    • compareTo

      public int compareTo(KeyFrame<Value> o)
      Specified by:
      compareTo in interface Comparable<Value extends Number>