Update: CC - SnailRunner - Entity Loaded (78gnds8jrj.js) 126 bytes modified

beta.r3js.org
-=yb4f310 2018-03-09 15:25:55 +01:00
parent 0eb25fb610
commit ef9682bc43
1 changed files with 8 additions and 0 deletions

View File

@ -147,6 +147,14 @@ GameLib.CustomCode.prototype.advanceCamera = function(delta) {
}
}.bind(this);
GameLib.CustomCode.prototype.adjustSpeed = function(delta) {
if (this.speedUp) {
this.speed += delta;
}
}.bind(this);
GameLib.Event.Subscribe(
GameLib.Event.GAME_START,
function() {