Live Debug
PBLiveDebugSliderSetCallback
Callback: (not documented yet)
Syntax (C/C++)
void PBLiveDebugSliderSetCallback(double newValue, PBUserContext context);
You can create a callback of this type from a function pointer with the above signature using PBLiveDebugSliderSetCallback_Make
.
Syntax (Python)
LiveDebugSliderSetCallback(newValue, context)
Parameters and Return Values
[in] newValue (double
): (not documented yet)
[in] context (PBUserContext): (not documented yet)
PBLiveDebugAddSlider
Function: (not documented yet)
Syntax (C/C++)
void PBLiveDebugAddSlider(ConstStr name, double minimumValue,
double maximumValue, double initialPosition, PBLiveDebugSliderSetCallback onSet,
PBUserContext context);
Syntax (Python)
LiveDebugAddSlider(name, minimumValue, maximumValue, initialPosition, onSet, context)
Parameters and Return Values
[in] name (referenced string): (not documented yet)
[in] minimumValue (double
): (not documented yet)
[in] maximumValue (double
): (not documented yet)
[in] initialPosition (double
): (not documented yet)
[in] onSet (PBLiveDebugSliderSetCallback): (not documented yet)
[in] context (PBUserContext): (not documented yet)