robot_2Generated
code_blocksInput

Description

Retrieves the current list of audio processors associated with this Mixer instance. Audio processors are components that can modify or analyze audio data as it passes through the mixer.

Usage

Call this method on an instance of Mixer to obtain an array of AudioProcessor objects currently in use. This can be useful for inspecting or modifying the audio processing chain.

Example

// Example of using GetProcessors method
Mixer audioMixer = new Mixer();
AudioProcessor[] processors = audioMixer.GetProcessors();

foreach (var processor in processors)
{
    // Perform operations with each processor
    Console.WriteLine(processor.Name);
}