Function
|
Description
|
void SetBpm(int bpm)
|
Sets the speed of the effect in BPM. Valid values range from 0 to 9999 BPM.
|
int GetBpm()
|
Returns the current effect speed in BPM.
|
void SetFade(int fade)
|
Sets the "fade" value. Valid values range from 1 to 100.
|
int GetFade()
|
Returns the current "fade" value.
|
void SetAmplify(int amp)
|
Sets the "Amplify" value. Valid values range from 0 to 100.
|
int GetAmplify()
|
Returns the current "Amplify" value.
|
void SetMono(int enable)
|
Disables "mono" if enable is set to false. Otherwise, use true.
|
int GetMono()
|
Returns true if "mono" is enabled, otherwise false.
|
void SetViewLog(int enable)
|
Disables "ViewLog" if enable is set to false. Otherwise, use true.
|
int GetViewLog()
|
Returns true if "ViewLog" is enabled, otherwise false.
|
void SetDirection(int dir)
|
Sets the direction of the effect. See below for details.
|
int GetDirection()
|
Returns the current effect direction. See below for details.
|
void SetShape(int shape)
|
Sets the shape of the objects. See below for details.
|
int GetShape()
|
Returns the currently used shape of the objects. See below for details.
|
void SetColor(int idx, color c)
|
Sets the color at the specified index in the Color Table dialog. If idx is out of range, nothing happens. The Color Table of this Effect always requires 3 entries.
|
color GetColor(int idx)
|
Returns the color with the specified index in the color table. If the index is out of range black is returned.
|
int GetColorCount()
|
Returns the number of colors in the color table. The Color Table of this Effect always requires 3 entries.
|