From f78ddb20723ff05b05621a3963d0a0b9c33493a6 Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Wed, 31 Jan 2018 16:44:54 -0500 Subject: [PATCH] Change pitch effect range to -360 to 360 --- src/blocks/scratch3_sound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/scratch3_sound.js b/src/blocks/scratch3_sound.js index f79575b24..443ccc1d7 100644 --- a/src/blocks/scratch3_sound.js +++ b/src/blocks/scratch3_sound.js @@ -74,7 +74,7 @@ class Scratch3SoundBlocks { */ static get EFFECT_RANGE () { return { - pitch: {min: -600, max: 600}, // -5 to 5 octaves + pitch: {min: -360, max: 360}, // -3 to 3 octaves pan: {min: -100, max: 100} // 100% left to 100% right }; }