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/modules/gameboard.js')
-rw-r--r-- | src/modules/gameboard.js | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/modules/gameboard.js b/src/modules/gameboard.js index d35b2b9..538ff92 100644 --- a/src/modules/gameboard.js +++ b/src/modules/gameboard.js @@ -398,15 +398,23 @@ export function start(el) { arcs.append(leftArc); mech.append(arcs); - const cell = getCell(-4, 6, -2, 0); + //const cell = getCell(-4, 6, -2, 0); //cell.append(mask); //cell.append(mech); - const mechTemplate = document.createElementNS(svgns, 'use'); - mechTemplate.setAttribute('href', '#mech-template'); - cell.append(mechTemplate); - console.log(cell); + //const pt = document.createElementNS(svgns, 'circle'); + //pt.setAttributeNS(null, 'r', 3); + //pt.setAttributeNS(null, 'fill', 'lime'); + //pt.setAttributeNS(null, 'fill-opacity', 0.5); + + //const mechTemplate = document.createElementNS(svgns, 'use'); + //mechTemplate.setAttributeNS(null, 'href', '#fallen-mech-template'); + //mechTemplate.setAttribute('href', '#standing-mech-template'); + //mechTemplate.setAttributeNS(null, 'href', '#vehicle-template'); + //cell.append(pt); + //cell.append(mechTemplate); + //console.log(cell); /////////// Observable.subscribe('select', select); |