Obsolete
GetSpectrumData returning a float[] is deprecated, use GetOutputData and pass a pre allocated array instead.
Suggest a changeSuccess!
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.
CloseSumbission 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 Manualpublic static function
GetSpectrumData(
numSamples:
int,
channel: int,
window:
FFTWindow):
float[];
public static float[]
GetSpectrumData(int
numSamples,
int
channel,
FFTWindow window);
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);
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.