Skip to content

Instantly share code, notes, and snippets.

@hex13
Created October 7, 2013 15:18
Show Gist options
  • Save hex13/6869695 to your computer and use it in GitHub Desktop.
Save hex13/6869695 to your computer and use it in GitHub Desktop.
player.input = function(key) {
switch(key){
case 'left': this.x -= this.speed; break;
case 'right': this.x += this.speed; break;
case 'up': this.y -= this.speed; break;
case 'down': this.y += this.speed; break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment