mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Added new transition properties
This commit is contained in:
parent
370fbdd5f2
commit
2a73964399
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,8 @@ var InjectionMap = require('./InjectionMap');
|
|||
* @property {boolean} isBooted - [description]
|
||||
* @property {boolean} isTransition - [description]
|
||||
* @property {?Phaser.Scene} transitionFrom - [description]
|
||||
* @property {integer} transitionDuration - [description]
|
||||
* @property {boolean} transitionAllowInput - [description]
|
||||
* @property {object} data - [description]
|
||||
* @property {(false|LoaderFileObject[])} files - [description]
|
||||
* @property {?(InputJSONCameraObject|InputJSONCameraObject[])} cameras - [description]
|
||||
|
@ -81,6 +83,8 @@ var Settings = {
|
|||
|
||||
isTransition: false,
|
||||
transitionFrom: null,
|
||||
transitionDuration: 0,
|
||||
transitionAllowInput: true,
|
||||
|
||||
// Loader payload array
|
||||
|
||||
|
|
Loading…
Reference in a new issue