parent
ba241e0ac0
commit
a3a77645f7
20
server.js
20
server.js
|
@ -96,17 +96,17 @@ var cursorupdate = setInterval(function() {
|
||||||
if (pos.y <= -50) {
|
if (pos.y <= -50) {
|
||||||
vel.y = -vel.y;
|
vel.y = -vel.y;
|
||||||
}
|
}
|
||||||
if (pos.x <= -50 && pos.y >= -50) {
|
if ((pos.x >= 50) && (pos.y >= 50)) {
|
||||||
cornerhits += 1;
|
console.log("corner hit");
|
||||||
chat("test corner");
|
} else if ((pos.x >= 50) && (pos.y <= -50)) {
|
||||||
} else if (pos.x <= -50 || pos.x >= 50) {
|
console.log("corner hit");
|
||||||
edgehits += 1;
|
} else if ((pos.x <= -50) && (pos.y <= -50)) {
|
||||||
chat("test edge");
|
console.log("corner hit");
|
||||||
} else if (pos.y <= -50 || pos.y >= 50) {
|
} else if ((pos.x <= -50) && (pos.y >= 50)) {
|
||||||
edgehits += 1;
|
console.log("corner hit");
|
||||||
chat("test edge")
|
} else if ((pos.x >= 50) || (pos.y >= 50) || (pos.y <= -50) || (pos.x <= -50)) {
|
||||||
|
console.log("edge hit");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
console.log(pos.x + " : " + pos.y);
|
|
||||||
}, 25);
|
}, 25);
|
||||||
|
|
Loading…
Reference in New Issue