index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/radial.js')
-rw-r--r-- | src/radial.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/radial.js b/src/radial.js index f2ed5fb..c0fbdd6 100644 --- a/src/radial.js +++ b/src/radial.js @@ -646,3 +646,16 @@ function addGroup(container, className) { container.appendChild(g); return g; } + +const { left, right, top, bottom } = document.currentScript.dataset; + +if (left && right && top && bottom) { + const map = generateRadialCoords( + new Map(), + { q: 0, r: 0, s: 0 }, + { left: +left, top: +top, right: +right, bottom: +bottom }, + 'both' + ); + + drawHexes(addGroup(grid, 'elevation-0'), map); +} |