Last active
November 8, 2018 01:08
-
-
Save renancaraujo/f0b464630263ca4635434bd09f2324b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Runner.prototype.update = function () { | |
this.updatePending = false; | |
var now = getTimeStamp(); | |
var deltaTime = now - (this.time || now); | |
this.time = now; | |
if (this.playing) { | |
this.clearCanvas(); | |
if (this.tRex.jumping) { | |
this.tRex.updateJump(deltaTime); | |
} | |
/* ....... */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment