Skip to content

Commit a5b8b45

Browse files
committed
increase these limits for fun
1 parent a4695af commit a5b8b45

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/extensions/scratch3_music/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -703,22 +703,22 @@ class Scratch3MusicBlocks {
703703
* @type {{min: number, max: number}}
704704
*/
705705
static get BEAT_RANGE () {
706-
return {min: 0, max: 100};
706+
return {min: 0, max: 1024};
707707
}
708708

709709
/** The minimum and maximum tempo values, in bpm.
710710
* @type {{min: number, max: number}}
711711
*/
712712
static get TEMPO_RANGE () {
713-
return {min: 20, max: 500};
713+
return {min: 10, max: 1024};
714714
}
715715

716716
/**
717717
* The maximum number of sounds to allow to play simultaneously.
718718
* @type {number}
719719
*/
720720
static get CONCURRENCY_LIMIT () {
721-
return 30;
721+
return 1024;
722722
}
723723

724724
/**

0 commit comments

Comments
 (0)