How to download
when downloaded extract (unzip) the downloaded file. then click on the extensions button in the top right corner of google chrome and press manage extensions and click the developer mode switch so it is on. Then press load unpacked and select the folder that you just unzipped. BOOM! you're finished and ready to play.
V3.0
V2.0
V1.0
document.addEventListener('keypress', event => {
if (event.key == "g") {
this.gravityPower = 0;
}
})
document.addEventListener('keypress', event => {
if (event.key == "h") {
this.gravityPower = 0.5;
}
})
document.addEventListener('keypress', event => {
if (event.key == "j") {
this.gravity.negate();
}
})
document.addEventListener('keypress', event => {
if (event.key == "b") {
this.setFriction(-0.0025);
}
})
document.addEventListener('keypress', event => {
if (event.key == "n") {
this.setFriction(1);
this.setVelocityLimit({ x: 0.5, y: 0.5, z: 0.5 });
}
})
document.addEventListener('keypress', event => {
if (event.key == "m") {
this.setFriction(-1);
this.setVelocityLimit({ x: 200, y: 200, z: 200 });
}
})
document.addEventListener('keypress', event => {
if (event.key == ";") {
this.setVelocity({y: 0});
}
})
document.addEventListener('keypress', event => {
if (event.key == "f") {
app.player.finishCourse(false);
}
})
document.addEventListener('keypress', event => {
if (event.key == "v") {
this.setVelocity({ x: this.velocity.x, y: 0, z: 0.175 });
}
})
document.addEventListener('keypress', event => {
if (event.key == "p") {
this.setVelocity({ x: this.velocity.x * 2, y: 0, z: this.velocity.z * 2 });
}
})
document.addEventListener('keypress', event => {
if (event.key == "o") {
this.setVelocity({ x: this.velocity.x / 1.5, y: 0, z: this.velocity.z / 1.5 });
}
})
document.addEventListener('keypress', event => {
if (event.key == "i") {
this.setVelocity({ x: this.velocity.x * -1, y: 0, z: this.velocity.z * -1 });
}
})
}