Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

AudioSource.GetOutputData

Switch to Manual
public void GetOutputData(float[] samples, int channel);

Parameters

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

Description

Provides a block of the currently playing source's output data.

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

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


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

Description

Deprecated Version. Returns a block of the currently playing source'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: