Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 101 bytes modified

beta.r3js.org
-=yb4f310 2018-03-23 17:21:59 +01:00
parent 6203733630
commit 37b638b0f3
1 changed files with 6 additions and 2 deletions

View File

@ -157,7 +157,8 @@ this.state = {
exploding : false,
lives : 3,
getReady : false,
message : null
message : null,
overrideOrientation : false
};
GameLib.CustomCode.prototype.displayHUD = function() {
@ -1173,6 +1174,8 @@ GameLib.CustomCode.prototype.backup = function() {
this.backupOrientation = this.state.orientation;
this.state.overrideOrientation = true;
}.bind(this)
GameLib.CustomCode.prototype.restore = function() {
@ -1525,7 +1528,8 @@ GameLib.Event.Subscribe(
exploding : false,
lives : 3,
getReady : false,
message : 'READY'
message : null,
overrideOrientation : false
};
this.initializeGrid();