Exemple #1
0
 /// <summary>
 /// Returns the Fast Fourier Transform of the song at a certain time, with the default amount of magnitudes.
 /// Useful to make spectrum effets.
 /// </summary>
 public float[] GetFft(double time, string path = null)
 {
     if (path != null)
     {
         AddDependency(path);
     }
     return(context.GetFft(time, path));
 }