Class LinearBlendSpace

java.lang.Object
com.jme3.anim.tween.action.LinearBlendSpace
All Implemented Interfaces:
BlendSpace

public class LinearBlendSpace extends Object implements BlendSpace
  • Constructor Summary

    Constructors
    Constructor
    Description
    LinearBlendSpace(float minValue, float maxValue)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Provides the blend weight value to the assigned BlendAction instance, this value will be used for interpolating a collection of actions' transformations (i.e., keyframes).
    void
    Adjusts the target blend action instance that will utilize the blend weight value provided by this blend-space implementation.
    void
    setValue(float value)
    An arbitrary value used for adjusting the blending weight value.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LinearBlendSpace

      public LinearBlendSpace(float minValue, float maxValue)
  • Method Details

    • setBlendAction

      public void setBlendAction(BlendAction action)
      Description copied from interface: BlendSpace
      Adjusts the target blend action instance that will utilize the blend weight value provided by this blend-space implementation.
      Specified by:
      setBlendAction in interface BlendSpace
      Parameters:
      action - the blend action instance that will utilize this blend-space (not null).
    • getWeight

      public float getWeight()
      Description copied from interface: BlendSpace
      Provides the blend weight value to the assigned BlendAction instance, this value will be used for interpolating a collection of actions' transformations (i.e., keyframes).
      Specified by:
      getWeight in interface BlendSpace
      Returns:
      the blending weight value in the range from 0 to 1, negative values and values above 1 aren't allowed.
      See Also:
    • setValue

      public void setValue(float value)
      Description copied from interface: BlendSpace
      An arbitrary value used for adjusting the blending weight value.
      Specified by:
      setValue in interface BlendSpace
      Parameters:
      value - the value in floats.
      See Also: