AudioListener.GetOutputData

Switch to Manual

Declaration

public static void GetOutputData(float[] samples, int channel);

Parameters

samples The array to populate with audio samples. Its length must be a power of 2.
channel The channel to sample from.

Description

Provides a block of the listener (master)'s output data.

The array given in the samples parameter will be filled with the requested data.

Additional resources: AudioListener.GetSpectrumData, AudioSource.GetSpectrumData, AudioSource.GetOutputData.


Obsolete GetOutputData returning a float[] is deprecated, use GetOutputData and pass a pre allocated array instead.

Declaration

public static float[] GetOutputData(int numSamples, int channel);

Description

Deprecated Version. Returns a block of the listener (master)'s output data.

This variation of the function allocates a new array each time it is called. Use the Non-alloc version instead for better performance.


Did you find this page useful? Please give it a rating: