We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 119ae11 commit 54442c5Copy full SHA for 54442c5
1 file changed
v3/src/boot/Game.js
@@ -72,14 +72,14 @@ var Game = function (config)
72
* @property {Phaser.MainLoop} mainloop - Main Loop handler.
73
* @protected
74
*/
75
- if (this.config.useTicker)
76
- {
+ // if (this.config.useTicker)
+ // {
77
this.loop = new VariableTimeStep(this, this.config.fps);
78
- }
79
- else
80
81
- this.loop = new MainLoop(this, this.config.fps);
82
+ // }
+ // else
+ // this.loop = new MainLoop(this, this.config.fps);
83
84
// Wait for the DOM Ready event, then call boot.
85
DOMContentLoaded(this.boot.bind(this));
0 commit comments