chore: thicc'er lines

This commit is contained in:
cha0s 2019-03-24 18:58:13 -05:00
parent 977ac77a9d
commit 3023489d91

View File

@ -45,7 +45,7 @@ export class ShapeView extends Renderable {
primitives.drawLine(
lastVertice,
vertice,
Primitives.lineStyle(new Color(255, 0, 255), 1),
Primitives.lineStyle(new Color(255, 0, 255), 4),
);
}
lastVertice = vertice;
@ -53,7 +53,7 @@ export class ShapeView extends Renderable {
primitives.drawLine(
lastVertice,
firstVertice,
Primitives.lineStyle(new Color(255, 0, 255), 1),
Primitives.lineStyle(new Color(255, 0, 255), 4),
);
this.container.removeAllChildren();
this.container.addChild(primitives);