1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00

Bruh moment

This commit is contained in:
toast-ts 2024-03-25 22:36:33 +11:00
parent 2b1bf5d1c2
commit 6cf51095ce

View File

@ -29,9 +29,10 @@ export default class CanvasBuilder {
const origin = [15, 65]; const origin = [15, 65];
const size = [1300, 630]; const size = [1300, 630];
const nodeWidth = size[0] / (data.length - 1); const nodeWidth = size[0] / (data.length - 1);
this.ctx.globalAlpha = 1; this.ctx.globalAlpha = 0;
this.ctx.fillStyle = this.palette.background; this.ctx.fillStyle = this.palette.background;
this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height); this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height);
this.ctx.globalAlpha = 1;
// Grey horizontal lines // Grey horizontal lines
this.ctx.lineWidth = 5; this.ctx.lineWidth = 5;