phaser/src/scene/const.js
Richard Davey 123c8f8127 Calls to the Scene Manager that happen before the Scene is running are now queued
Thanks to gdomaradzki for bringing this one to my attention!
2018-01-23 02:12:33 +00:00

15 lines
183 B
JavaScript

module.exports = {
PENDING: 0,
INIT: 1,
START: 2,
LOADING: 3,
CREATING: 4,
RUNNING: 5,
PAUSED: 6,
SLEEPING: 7,
SHUTDOWN: 8,
DESTROYED: 9
};