Version: 5.4 beta (switch to 5.3)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

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

AudioListener.GetOutputData

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public static function GetOutputData(samples: float[], channel: int): void;
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.

See Also: AudioListener.GetSpectrumData, AudioSource.GetSpectrumData, AudioSource.GetOutputData.


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

Parameters

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.