Description
The DspNames
property provides a list of available Digital Signal Processing (DSP) names that can be used within the Sandbox environment. This static property returns an array of strings, each representing a unique DSP name that can be applied to audio processing tasks.
Usage
To access the list of available DSP names, simply reference the DspNames
property from the Sound
class. This can be useful for dynamically applying audio effects or for displaying available DSP options to users.
Example
// Example of accessing the DspNames property
string[] dspNames = Sound.DspNames;
// Iterate through the list of DSP names and print them
foreach (string dspName in dspNames)
{
// Use dspName as needed, e.g., apply to an audio effect
// Example: ApplyDspEffect(dspName);
}