This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Rendering
Professional (SIM)
UnigineEditor
Interface Overview
Assets Workflow
Version Control
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Animations-Related Classes
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
VR-Related Classes
Content Creation
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Unigine.Plugins.FMOD.DSP Class

Notice
This set of functions is available when the FMOD plugin is loaded.

The Digital Signal Processor transforms input audio signals to an output stream.

DSP Class

Properties

bool IsIdle#

The value specifying if idle state is enabled.

bool Bypass#

The value specifying if bypass is enabled.

bool Active#

The value specifying if the active state is enabled.

Members


void SetParameterBool ( int index, bool value ) #

Sets a boolean parameter by index.

Arguments

  • int index - The parameter index in range from 0 to getNumParameters().
  • bool value - The parameter value.

void SetParameterInt ( int index, int value ) #

Sets an integer value for the parameter by its index.

A DSP can have several parameters that can be controlled individually. For example, ECHO DSP's parameters are: DELAY, FEEDBACK, DRYLEVEL, WETLEVEL. See the list of available parameters for various DSP types.

Arguments

  • int index - Parameter index. The parameters are numbered starting from 0 to getNumParameters().
  • int value - Parameter value.

void SetParameterFloat ( int index, float value ) #

Sets a floating point value for the parameter by its index.

A DSP can have several parameters that can be controlled individually. For example, ECHO DSP's parameters are: DELAY, FEEDBACK, DRYLEVEL, WETLEVEL. See the list of available parameters for various DSP types.

Arguments

  • int index - Parameter index. The parameters are numbered starting from 0 to getNumParameters().
  • float value - Parameter value.

DSPType.TYPE GetType ( ) #

Returns the DSP type value, one of the TYPE values.

Return value

The DSP type value, one of the TYPE values.

int GetNumParameters ( ) #

Returns the number of parameters exposed by this unit. Use this to enumerate all parameters of a DSP unit with getParameterInfo().

Return value

The number of parameters exposed by this unit.

void Release ( ) #

Frees a DSP object.

void ReleaseFromChannel ( ) #

Auxiliary function, should not be used.
Last update: 2023-03-15
Build: ()