Package com.jme3.anim.tween.action
Class LinearBlendSpace
java.lang.Object
com.jme3.anim.tween.action.LinearBlendSpace
- All Implemented Interfaces:
BlendSpace
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloat
Provides the blend weight value to the assignedBlendAction
instance, this value will be used for interpolating a collection of actions' transformations (i.e., keyframes).void
setBlendAction
(BlendAction action) 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.
-
Constructor Details
-
LinearBlendSpace
public LinearBlendSpace(float minValue, float maxValue)
-
-
Method Details
-
setBlendAction
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 interfaceBlendSpace
- 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 assignedBlendAction
instance, this value will be used for interpolating a collection of actions' transformations (i.e., keyframes).- Specified by:
getWeight
in interfaceBlendSpace
- 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 interfaceBlendSpace
- Parameters:
value
- the value in floats.- See Also:
-