mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-13 15:00:06 -04:00
Merge remote-tracking branch 'LLK/develop' into develop
This commit is contained in:
parent
ed9623ef4b
commit
0024b209bd
11 changed files with 303 additions and 3 deletions
src/engine
|
@ -70,6 +70,18 @@ function Runtime () {
|
|||
this._cloneCounter = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Width of the stage, in pixels.
|
||||
* @const {number}
|
||||
*/
|
||||
Runtime.STAGE_WIDTH = 480;
|
||||
|
||||
/**
|
||||
* Height of the stage, in pixels.
|
||||
* @const {number}
|
||||
*/
|
||||
Runtime.STAGE_HEIGHT = 360;
|
||||
|
||||
/**
|
||||
* Event name for glowing a script.
|
||||
* @const {string}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue