From f4172b1d1a19b082571309aa14ef4f1c6bec4ac2 Mon Sep 17 00:00:00 2001 From: Kevin Ngo Date: Sat, 1 Dec 2018 19:27:17 -0800 Subject: [PATCH] lower beat hit volume to 0.25 --- src/components/beat-hit-sound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/beat-hit-sound.js b/src/components/beat-hit-sound.js index d99d51b..fdd9247 100644 --- a/src/components/beat-hit-sound.js +++ b/src/components/beat-hit-sound.js @@ -4,7 +4,7 @@ var sourceCreatedCallback; const LAYER_BOTTOM = 'bottom'; const LAYER_MIDDLE = 'middle'; const LAYER_TOP = 'top'; -const VOLUME = 0.5; +const VOLUME = 0.25; // Allows for modifying detune. PR has been sent to three.js. THREE.Audio.prototype.play = function () {