console map

This commit is contained in:
Adrien MALINGREY 2023-06-12 01:06:28 +02:00
parent b5e64094d1
commit 3541f1d461

View File

@ -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")
}
}