소스 검색

Fix miter issue with text outline

David Catuhe 4 년 전
부모
커밋
d608d96804
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      gui/src/2D/controls/textBlock.ts

+ 2 - 0
gui/src/2D/controls/textBlock.ts

@@ -384,6 +384,8 @@ export class TextBlock extends Control {
         if (this.outlineWidth) {
             context.lineWidth = this.outlineWidth;
             context.strokeStyle = this.outlineColor;
+            context.lineJoin = 'miter';
+            context.miterLimit = 2; 
         }
     }