Firelight Technologies FMOD Studio API
FMOD_DSP_PARAMETER_DESC_FLOAT
Structure to define a float parameter for a DSP unit.
C/C++ Syntax
typedef struct {
float min;
float max;
float defaultval;
FMOD_DSP_PARAMETER_FLOAT_MAPPING mapping;
} FMOD_DSP_PARAMETER_DESC_FLOAT;
JavaScript Syntax
struct FMOD_DSP_PARAMETER_DESC_FLOAT
{
min,
max,
defaultval,
};
Members
min
[w] Minimum parameter value.
max
[w] Maximum parameter value.
defaultval
[w] Default parameter value.
mapping
[w] How the values are distributed across dials and automation curves (e.g. linearly, exponentially etc).
Remarks
Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
Members marked with [w] mean the variable can be written to. The user can set the value.
JavaScript only :
Not all fields are currently supported or may not work as expected at this time. To initialize an new instance in javascript use "FMOD.DSP_PARAMETER_DESC_FLOAT()", no 'new' keyword is required.
See Also
- System::createDSP
- DSP::setParameterFloat
- DSP::getParameterFloat
- FMOD_DSP_PARAMETER_DESC
- FMOD_DSP_PARAMETER_FLOAT_MAPPING
Version 1.10.03 Built on Feb 1, 2018