class AnimColor
The AnimColor class represents an animated sequence of color values.
Member Functions
void SetValue()
Set the value at a given frame.
Return value: none when (int): frame number val (LM_ColorVector): the value to set
void SetValue()
Set the value at a given frame.
Return value: none when (int): frame number val (rgb_color): the value to set
LM_ColorVector GetValue()
Return the value of this channel at a given frame.
Return value (LM_ColorVector): value at the given frame when (int): frame number
Member Variables
value (rgb_color)
The current value of the channel.
class AnimColor : public AnimChannel { void SetValue(int32 when, LM_ColorVector val); void SetValue(int32 when, rgb_color val); LM_ColorVector GetValue(int32 when); void SetValueByID(int32 id, LM_ColorVector val); void SetValueByID(int32 id, rgb_color val); LM_ColorVector GetValueByID(int32 id); rgb_color value; };