diff options
Diffstat (limited to 'html/rogue/js')
-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) { |