AudioListener.GetSpectrumData(int,int,FFTWindow)
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
Switch to Manual
Description
Returns a block of the listener (master)'s spectrum data.
Number of values (numSamples) must be a power of 2. (ie 128/256/512 etc). Min = 64. Max = 8192.
Use window to reduce leakage between frequency bins/bands.
Note, the more complex window type, the better the quality, but reduced speed.
public static function
GetSpectrumData(
samples:
float[],
channel: int,
window:
FFTWindow):
void;
public static void
GetSpectrumData(float[]
samples,
int
channel,
FFTWindow window);
public static
def
GetSpectrumData(
samples as float[],
channel as int,
window as
FFTWindow)
as void
Description
Returns a block of the listener (master)'s spectrum data.
Number of values (numSamples) must be a power of 2. (ie 128/256/512 etc). Min = 64. Max = 8192.
Use window to reduce leakage between frequency bins/bands.
Note, the more complex window type, the better the quality, but reduced speed.