Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Perlkonig committed Jan 6, 2025
2 parents 996e664 + 0c5aca4 commit dbc16d7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Binary file modified contact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion contact.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions src/sheets/dice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,17 @@ sheet.glyphs.set("d6-6", (canvas: SVGContainer) => {
return group;
});

sheet.glyphs.set("d6-empty", (canvas: SVGContainer) => {
const group = canvas.symbol();
group.rect(48, 48)
.radius(10, 10)
.fill("none")
.stroke({width: 1, color: "#000"})
.attr("data-context-border", true)
.attr("data-playerfill", true)
.center(25, 25);
group.viewbox(0, 0, 50, 50);
return group;
});

export { sheet as DiceSheet };

0 comments on commit dbc16d7

Please sign in to comment.