From 3541f1d46182589eb5dab5315799cee7cacfa3d6 Mon Sep 17 00:00:00 2001 From: adrien Date: Mon, 12 Jun 2023 01:06:28 +0200 Subject: [PATCH] console map --- MazeMesh.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MazeMesh.js b/MazeMesh.js index ce6bbc8..7dc980a 100644 --- a/MazeMesh.js +++ b/MazeMesh.js @@ -62,7 +62,7 @@ export default class MazeMesh extends THREE.InstancedMesh { toString() { return this.map.map(row => - row.map(isWall => isWall? "██":"░░").join("") + row.map(isWall => isWall? "██":" ").join("") ).join("\n") } } \ No newline at end of file