Function
|
Description
|
int ChaserGetPlaybackState()
|
Returns the current playback state of the Chaser. See below for a list of constants.
|
void ChaserPlay()
|
Starts Chaser playback.
|
void ChaserStop()
|
Stops Chaser playback.
|
void ChaserPause()
|
Pauses Chaser playback.
|
int ChaserGetCurrentStep()
|
Returns the index of the Step that is currently active. Indexing starts with 0.
|
void ChaserCallCurrentStep(int index)
|
Activates the Step specified with index. Indexing starts with 0.
|
void ChaserCallPreviousStep(int offset)
|
Returns to the Previous Step. The parameter offset allows to define how many Steps are skipped. By default, offset is set to 1 and does not need to be passed.
|
void ChaserCallNextStep(int offset)
|
Skips to the Next Step. The parameter offset allows to define how many Steps are skipped. By default, offset is set to 1 and does not need to be passed.
|
void ChaserGetStepCount(int count)
|
Returns the current number of Steps.
|
void ChaserSetLoopCount(int count)
|
Sets the Loop Count. Valid values range from 0 to 100. A value of 0 means Endless.
|
int ChaserGetLoopCount()
|
Returns the currently set Loop Count. A value of 0 means Endless.
|
int ChaserGetCurrentLoop()
|
Returns in which loop the Chaser is currently in.
|
float ChaserGetStepProgress()
|
Returns the progression of the current Step in percent. Valid values range from 0.0 to 100.0.
|
float ChaserGetLoopProgress()
|
Returns the progression of the Loop in percent. Valid values range from 0.0 to 100.0.
|
float ChaserGetStepTime(int index)
|
Returns the total Step Time of the Step specified with index in seconds. Indexing starts with 0.
|
float ChaserGetLoopTime()
|
Returns the total Loop Time of the Chaser in seconds. Indexing starts with 0.
|
void ChaserSetStepDescription(int index, string description)
|
Sets the Description of the Step specified with index. Indexing starts with 0.
|
string ChaserGetStepDescription(int index)
|
Returns the Description of the Step specified with index. Indexing starts with 0.
|
void ChaserSetStepFadeType(int index, int type)
|
Sets the Fade Type of the Step specified with index. Indexing starts with 0. See below for a list of constants for type.
|
int ChaserGetStepFadeType(int index)
|
Returns the Fade Type of the Step specified with index. Indexing starts with 0.
|
void ChaserSetStepFadeTime(int index, float time)
|
Sets the Fade Time of the Step specified with index, in seconds. Indexing starts with 0.
|
float ChaserGetStepFadeTime(int index)
|
Returns the Fade Time of the Step specified with index, in seconds. Indexing starts with 0.
|
void ChaserSetStepWaitTime(int index, float time)
|
Sets the Wait Time of the Step specified with index, in seconds. Indexing starts with 0.
|
float ChaserGetStepWaitTime(int index)
|
Returns the Wait Time of the Step specified with index, in seconds. Indexing starts with 0.
|
void ChaserInvert()
|
Inverts the Step list.
|
void ChaserSwapSteps(int index1, int index2)
|
Swaps the positions of the Steps specified with index1 and index2. Indexing starts with 0.
|
void ChaserMoveStepUp(int index)
|
Moves the Step specified with index one item up. Indexing starts with 0.
|
void ChaserMoveStepDown(int index)
|
Moves the Step specified with index one item down. Indexing starts with 0.
|
void ChaserSetPlaybackMode(int mode)
|
Sets the Playback Mode of the Chaser. See below for a list of constants for mode.
|
int ChaserGetPlaybackMode()
|
Returns the currently set Playback Mode.
|
void ChaserSetSpeedPitch(float value)
|
Sets the Pitch value of the Chaser. Valid values range from -10.00 to 10.00.
|
float ChaserGetSpeedPitch()
|
Returns the currently set Pitch.
|
void ChaserSetAutostart(int value)
|
Use 1 (TRUE) to activate the Automatic Start of the Chaser. Use 0 (FALSE) to deactivate it.
|
int ChaserGetAutostart()
|
Returns 1 (TRUE) if the Automatic Start of the Chaser is activated, otherwise 0 (FALSE).
|
void ChaserToggleAutostart()
|
Activates or deactivates the Automatic Start of the Chaser, depending on the current state.
|