diff --git a/src/components/beat-hit-sound.js b/src/components/beat-hit-sound.js index fd92e93..60a92bb 100644 --- a/src/components/beat-hit-sound.js +++ b/src/components/beat-hit-sound.js @@ -46,7 +46,7 @@ AFRAME.registerComponent('beat-hit-sound', { processSound: function (audio) { // Randomize a bit. audio.detune = (Math.random() * 1500); - audio.playbackRate = 0.80 + (Math.random() * .20); + audio.playbackRate = 1 + (Math.random() * .20); this.currentBeatEl.object3D.getWorldPosition(audio.position); } });