Firelight Technologies FMOD Studio API
FMOD_STUDIO_PLUGIN_INSTANCE_PROPERTIES
This structure holds information about a DSP plugin instance.
C/C++ Syntax
typedef struct {
const char *name;
FMOD_DSP *dsp;
} FMOD_STUDIO_PLUGIN_INSTANCE_PROPERTIES;
JavaScript Syntax
struct FMOD_STUDIO_PLUGIN_INSTANCE_PROPERTIES
{
name,
};
Members
name
The name of the plugin effect or sound (set in FMOD Studio).
dsp
The DSP plugin instance. This can be cast to FMOD::DSP* type.
Remarks
This data is passed to the event callback function when type is FMOD_STUDIO_EVENT_CALLBACK_PLUGIN_CREATED or FMOD_STUDIO_EVENT_CALLBACK_PLUGIN_DESTROYED.
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.STUDIO_PLUGIN_INSTANCE_PROPERTIES()", no 'new' keyword is required.
See Also
Version 1.10.03 Built on Feb 1, 2018