Tweak the width/height proportion of cells

This commit is contained in:
Eryn Wells 2023-02-03 18:03:13 -08:00
parent e4a7550abc
commit 89902ccc03

View file

@ -389,7 +389,7 @@ let grid;
new p5(p => {
const CELL_WIDTH = 20;
const CELL_HEIGHT = Math.floor(CELL_WIDTH * 1.333);
const CELL_HEIGHT = Math.floor(CELL_WIDTH * 1.3);
p.setup = () => {
const container = document.querySelector('#dungeon-background');