Skip to content

Instantly share code, notes, and snippets.

@nvenegas
Created July 7, 2013 21:17
Show Gist options
  • Save nvenegas/5945009 to your computer and use it in GitHub Desktop.
Save nvenegas/5945009 to your computer and use it in GitHub Desktop.
Navigation systems for Bit's Quest — http://bitsquest.bitbucket.org/
var bit = this;
function navigate(thruster) {
return function () {
bit.thrusters[thruster](true);
return {
stop: function () {
bit.thrusters[thruster](false);
}
};
};
}
var north = navigate('bottom');
var east = navigate('left');
var south = navigate('top');
var west = navigate('right');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment