We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4695af commit a5b8b45Copy full SHA for a5b8b45
1 file changed
src/extensions/scratch3_music/index.js
@@ -703,22 +703,22 @@ class Scratch3MusicBlocks {
703
* @type {{min: number, max: number}}
704
*/
705
static get BEAT_RANGE () {
706
- return {min: 0, max: 100};
+ return {min: 0, max: 1024};
707
}
708
709
/** The minimum and maximum tempo values, in bpm.
710
711
712
static get TEMPO_RANGE () {
713
- return {min: 20, max: 500};
+ return {min: 10, max: 1024};
714
715
716
/**
717
* The maximum number of sounds to allow to play simultaneously.
718
* @type {number}
719
720
static get CONCURRENCY_LIMIT () {
721
- return 30;
+ return 1024;
722
723
724
0 commit comments