From 526bd0ecaf6a6072a9910f730720d7e8f7b41784 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Tue, 26 Dec 2023 13:35:20 +0100 Subject: [PATCH] retirer le stroke --- public_html/js/render.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/public_html/js/render.js b/public_html/js/render.js index c4ac0e1..8b86ffc 100644 --- a/public_html/js/render.js +++ b/public_html/js/render.js @@ -213,8 +213,6 @@ class Render { this.ctx.beginPath(); this.ctx.arc(player.x, player.y, 100, 0, 2 * Math.PI); this.ctx.lineWidth = 2; - this.ctx.strokeStyle = 'black'; - this.ctx.stroke(); } } }