mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 23:20:59 +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} isBooted - [description]
|
||||||
* @property {boolean} isTransition - [description]
|
* @property {boolean} isTransition - [description]
|
||||||
* @property {?Phaser.Scene} transitionFrom - [description]
|
* @property {?Phaser.Scene} transitionFrom - [description]
|
||||||
|
* @property {integer} transitionDuration - [description]
|
||||||
|
* @property {boolean} transitionAllowInput - [description]
|
||||||
* @property {object} data - [description]
|
* @property {object} data - [description]
|
||||||
* @property {(false|LoaderFileObject[])} files - [description]
|
* @property {(false|LoaderFileObject[])} files - [description]
|
||||||
* @property {?(InputJSONCameraObject|InputJSONCameraObject[])} cameras - [description]
|
* @property {?(InputJSONCameraObject|InputJSONCameraObject[])} cameras - [description]
|
||||||
|
@ -81,6 +83,8 @@ var Settings = {
|
||||||
|
|
||||||
isTransition: false,
|
isTransition: false,
|
||||||
transitionFrom: null,
|
transitionFrom: null,
|
||||||
|
transitionDuration: 0,
|
||||||
|
transitionAllowInput: true,
|
||||||
|
|
||||||
// Loader payload array
|
// Loader payload array
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue