Change pitch effect range to -360 to 360

This commit is contained in:
Eric Rosenbaum 2018-01-31 16:44:54 -05:00
parent 32e240f18a
commit f78ddb2072

View file

@ -74,7 +74,7 @@ class Scratch3SoundBlocks {
*/ */
static get EFFECT_RANGE () { static get EFFECT_RANGE () {
return { 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 pan: {min: -100, max: 100} // 100% left to 100% right
}; };
} }