FMOD_DSP_PARAMETER_DESC_INT

FMOD Studio API

Firelight Technologies FMOD Studio API

FMOD_DSP_PARAMETER_DESC_INT

Structure to define a int parameter for a DSP unit.

C/C++ Syntax

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

JavaScript Syntax

struct FMOD_DSP_PARAMETER_DESC_INT
{
  min,
  max,
  defaultval,
  goestoinf,
};

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.

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_INT()", no 'new' keyword is required.

See Also




Version 1.10.03 Built on Feb 1, 2018