diff options
Diffstat (limited to 'render.js')
-rw-r--r-- | render.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ export function drawShip(ctx, pos, angle) { ctx.translate(x, y); ctx.rotate(angle); ctx.fillStyle = 'white'; - const STEP = 0.2; + const STEP = 0.4; ctx.beginPath(); ctx.moveTo(0, 0); ctx.lineTo(-STEP, -STEP); |