Skip to content

Commit

Permalink
Set emote glyph shadow and bold to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinrobot committed Nov 19, 2023
1 parent 2fbdfdb commit 3edd4f8
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,22 @@ public boolean hasColor() {
public float getOversample() {
return this.oversample;
}

@Override
public float getAdvance(boolean bold) {
// Bold is not supported
return this.getAdvance();
}

@Override
public float getBoldOffset() {
// Bold is not supported
return 0;
}

@Override
public float getShadowOffset() {
// Shadow is not supported
return 0;
}
}

0 comments on commit 3edd4f8

Please sign in to comment.