adding explosion asset

This commit is contained in:
2017-07-16 22:10:40 -05:00
parent a90fea5a46
commit 7803d14fa0
3 changed files with 151 additions and 3 deletions

View File

@@ -70,11 +70,11 @@ public class AudioAnalyzer {
bassBinBegin = 1;
bassBinEnd = 17;
UMBinBegin = 350;
UMBinBegin = 200;
UMBinEnd = 512;
bassThresholdCalcRange = thresholdRangeCalc(0.3f);
UMThresholdCalcRange = thresholdRangeCalc(0.35f);
bassThresholdCalcRange = thresholdRangeCalc(0.28f);
UMThresholdCalcRange = thresholdRangeCalc(0.3f);
Gdx.app.debug("Read freq", String.valueOf(audioData.getFormat().getSampleRate()));
Gdx.app.debug("Using following bin ranges", "\nBass freq begin: " + bassBinBegin + "\nBass freq end: " + bassBinEnd + "\nMain freq begin: " + UMBinBegin + "\nMain freq end: " + UMBinEnd);