Skip to content

Commit

Permalink
Fix tagged vertex rendering
Browse files Browse the repository at this point in the history
(closes #1624)
  • Loading branch information
bhousel committed Nov 25, 2024
1 parent baaa44a commit 7d11458
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pixi/PixiTextures.js
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,10 @@ export class PixiTextures {

const taggedCircle = new PIXI.Graphics() // a small circle with a dot inside
.circle(0, 0, 4.5)
.fill({ color: 0x000000, alpha: 1 })
.circle(0, 0, 1.5)
.fill({ color: 0xffffff, alpha: 1 })
.stroke({ color: 0x444444, width: 1 });
.stroke({ color: 0x444444, width: 1 })
.circle(0, 0, 2)
.fill({ color: 0x000000, alpha: 1 });

this.graphicToTexture('pin', pin);
this.graphicToTexture('boldPin', boldPin);
Expand Down

0 comments on commit 7d11458

Please sign in to comment.