Firelight Technologies FMOD Studio API

FMOD_DSP_PARAMETER_DESC_INT

Structure to define a int parameter for a DSP unit.

Structure

typedef struct {
  int min;
  int max;
  int defaultval;
  bool goestoinf;
  const char* const* valuenames;
} FMOD_DSP_PARAMETER_DESC_INT;

Members

min

[w] Minimum parameter value.

max

[w] Maximum parameter value.

defaultval

[w] Default parameter value.

goestoinf

[w] Whether the last value represents infiniy.

valuenames

[w] Names for each value. There should be as many strings as there are possible values (max - min + 1). Optional.

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.

See Also




Version 1.03.06 Built on Apr 17, 2014