add basic ship movement and tracking

This commit is contained in:
Asraelite 2016-03-22 11:56:53 +00:00
parent fcfe1e8790
commit 05ad81ed8d
10 changed files with 65 additions and 27 deletions

View file

@ -17,6 +17,10 @@ function Net() {
this.socket.on('update', function(data) {
game.world.update(data);
});
this.socket.on('world', function(data) {
game.world.playerShipId = data;
});
};
this.update = function(move) {