public class AnimationChannel extends java.lang.Object implements java.lang.Iterable<KeyframeSequence>
Modifier and Type | Method and Description |
---|---|
void |
addCurve(KeyframeSequence curve)
Deprecated.
Please use AddKeyframeSequence
|
void |
addKeyframeSequence(KeyframeSequence sequence)
Adds keyframe sequence to this channel
|
java.lang.Class<?> |
getComponentType()
Gets the component field's type
|
java.util.List<KeyframeSequence> |
getCurves()
Deprecated.
Please use KeyframeSequences
|
java.lang.Object |
getDefaultValue()
Gets the Default value of the channel.
|
java.util.List<KeyframeSequence> |
getKeyframeSequences()
Gets all keyframe sequences inside this channel
|
java.lang.String |
getName()
Gets the name of the channel
|
java.util.Iterator<KeyframeSequence> |
iterator()
Gets an enumerator to walk through all keyframe sequences inside this channel
|
void |
setDefaultValue(java.lang.Object value)
Sets the Default value of the channel.
|
public java.lang.Class<?> getComponentType()
public java.lang.String getName()
public java.lang.Object getDefaultValue()
public void setDefaultValue(java.lang.Object value)
value
- New value@Deprecated public java.util.List<KeyframeSequence> getCurves()
public java.util.List<KeyframeSequence> getKeyframeSequences()
@Deprecated public void addCurve(KeyframeSequence curve)
curve
- The curve to add.public void addKeyframeSequence(KeyframeSequence sequence)
sequence
- The keyframe sequence to add.public java.util.Iterator<KeyframeSequence> iterator()
iterator
in interface java.lang.Iterable<KeyframeSequence>