fixed void circle entity and debug screen stuff

This commit is contained in:
2017-07-11 19:19:24 -05:00
parent f1b0a2b20e
commit 27757f0024
16 changed files with 90 additions and 17 deletions

View File

@@ -56,7 +56,6 @@ public class AudioAnalyzer {
public AudioAnalyzer() {
sender = new MiniSender();
analysisAlgorithm = new Runnable() {
@Override
@@ -359,4 +358,12 @@ public class AudioAnalyzer {
public float getsecondsPerWindow() {
return secondsPerWindow;
}
public float getBassAvg() {
return bassAvg;
}
public float getUmAvg() {
return umAvg;
}
}