improve rendering

This commit is contained in:
Asraelite 2016-03-29 21:21:01 +01:00
parent c47ad92f21
commit 8a059b92d5
30 changed files with 286 additions and 260 deletions

View file

@ -36,10 +36,10 @@ class Grapple extends Projectile {
}
connect() {
let p1 = { x: 0, y: 0.5 };
let p1 = { x: 0.1, y: 0.5 };
let p2 = { x: 0.0625, y: 0 };
this.rope = new Rope(this.player.ship, this, p1, p2);
this.rope.initLength = 6;
this.rope.initLength = 8;
this.world.addCopula(this.rope);
}