Skip to content

Commit

Permalink
Merge pull request #926 from ericrosenbaum/bugfix/reduce-pitch-effect…
Browse files Browse the repository at this point in the history
…-range

Clamp pitch effect range to -360 to 360
  • Loading branch information
ericrosenbaum committed Feb 1, 2018
2 parents 32e240f + f78ddb2 commit 0e4e6be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocks/scratch3_sound.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}
Expand Down

0 comments on commit 0e4e6be

Please sign in to comment.