mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 00:31:00 -05:00
Merge branch 'master' into sequelize-v7
This commit is contained in:
commit
1390937028
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
.env
|
||||
.yarn
|
||||
.pnp.*
|
||||
dist
|
||||
src/private
|
||||
src/*.json
|
||||
|
@ -85,7 +85,7 @@ export default class CanvasBuilder {
|
||||
const Y = ((1 - (currentValue / top)) * size[1]) + origin[1];
|
||||
const nextValue = data[i + 1];
|
||||
const previousValue = data[i - 1];
|
||||
this.ctx.strokeStyle = type === 'players' ? gradient : null;
|
||||
this.ctx.strokeStyle = type === 'players' ? gradient : null;
|
||||
this.ctx.beginPath();
|
||||
|
||||
if (lastCoordinates.length) this.ctx.moveTo(lastCoordinates[0], lastCoordinates[1]);
|
||||
@ -106,7 +106,7 @@ export default class CanvasBuilder {
|
||||
// Balls. What else? I mean.. I'm not that creative, I'm just a comment not a funny comedian.
|
||||
this.ctx.fillStyle = type === 'players' ? gradient : null;
|
||||
this.ctx.beginPath();
|
||||
this.ctx.arc(X, Y, this.ctx.lineWidth * 1.2, 0, 2 * Math.PI);
|
||||
this.ctx.arc(X, Y, this.ctx.lineWidth * 0.8, 1, 2 * Math.PI);
|
||||
this.ctx.closePath();
|
||||
this.ctx.fill();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user