Skip to content

Commit dbc16d7

Browse files
committed
Merge branch 'develop'
2 parents 996e664 + 0c5aca4 commit dbc16d7

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

contact.png

2.73 KB
Loading

contact.svg

Lines changed: 1 addition & 1 deletion
Loading

src/sheets/dice.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,17 @@ sheet.glyphs.set("d6-6", (canvas: SVGContainer) => {
155155
return group;
156156
});
157157

158+
sheet.glyphs.set("d6-empty", (canvas: SVGContainer) => {
159+
const group = canvas.symbol();
160+
group.rect(48, 48)
161+
.radius(10, 10)
162+
.fill("none")
163+
.stroke({width: 1, color: "#000"})
164+
.attr("data-context-border", true)
165+
.attr("data-playerfill", true)
166+
.center(25, 25);
167+
group.viewbox(0, 0, 50, 50);
168+
return group;
169+
});
170+
158171
export { sheet as DiceSheet };

0 commit comments

Comments
 (0)