Reduce amount of time for executing blocks

This commit is contained in:
Tim Mickel 2016-05-05 13:09:37 -04:00
parent 387c36d99e
commit dd53b86b8c
2 changed files with 2 additions and 2 deletions
src/engine

View file

@ -22,7 +22,7 @@ function Sequencer (runtime) {
* In Scratch 2.0, this is set to 75% of the target stage frame-rate (30fps).
* @const {!number}
*/
Sequencer.WORK_TIME = 1000 / 60;
Sequencer.WORK_TIME = 10;
/**
* Step through all threads in `this.threads`, running them in order.