diff options
author | elioat <elioat@tilde.institute> | 2024-12-28 17:02:02 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-28 17:02:02 -0500 |
commit | 5e712f625536390a28bbf66829bd26f3f84a189c (patch) | |
tree | 47b2cec3b0270687b819783bdf38e2f17f189064 | |
parent | 50874b6fea9b58ea53a16a517471698d4be37ca2 (diff) | |
download | tour-5e712f625536390a28bbf66829bd26f3f84a189c.tar.gz |
*
-rw-r--r-- | html/rogue/js/debug.js | 2 | ||||
-rw-r--r-- | html/rogue/js/hex.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/html/rogue/js/debug.js b/html/rogue/js/debug.js index 6477a83..f2e0b02 100644 --- a/html/rogue/js/debug.js +++ b/html/rogue/js/debug.js @@ -33,7 +33,7 @@ const Debug = { draw(ctx) { if (!this.isEnabled) return; - const padding = 10; + const padding = 30; const lineHeight = 20; let y = padding; diff --git a/html/rogue/js/hex.js b/html/rogue/js/hex.js index ab787f6..fa08e3d 100644 --- a/html/rogue/js/hex.js +++ b/html/rogue/js/hex.js @@ -6,7 +6,6 @@ const HexGrid = { get HEIGHT() { return Config.hex.HEIGHT }, get GRID_SIZE() { return Config.hex.GRID_SIZE }, COLOR: Config.colors.GRID, - IMPASSABLE_COLOR: "rgba(255, 0, 0, 0.967)", // hex to pixel toPixel(hex) { |