We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf368ab commit 66a9becCopy full SHA for 66a9bec
1 file changed
src/scene/Systems.js
@@ -491,6 +491,7 @@ var Systems = new Class({
491
492
/**
493
* Start this Scene running and rendering.
494
+ * Called automatically by the SceneManager.
495
*
496
* @method Phaser.Scenes.Systems#start
497
* @since 3.0.0
@@ -499,9 +500,12 @@ var Systems = new Class({
499
500
*/
501
start: function (data)
502
{
- this.settings.status = CONST.START;
503
+ if (data)
504
+ {
505
+ this.settings.data = data;
506
+ }
507
- this.settings.data = data;
508
+ this.settings.status = CONST.START;
509
510
this.settings.active = true;
511
this.settings.visible = true;
0 commit comments