mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
Fix scoresheet text
This commit is contained in:
parent
59baa9f06f
commit
6559e8ee28
@ -454,13 +454,19 @@ class Scoresheet{
|
||||
})
|
||||
ctx.fillStyle = "#000"
|
||||
ctx.fill()
|
||||
ctx.font = "36px " + this.font
|
||||
ctx.textAlign = "right"
|
||||
ctx.fillStyle = "#fff"
|
||||
ctx.strokeStyle = "#000"
|
||||
ctx.lineWidth = 0.5
|
||||
ctx.fillText(strings.points, 788, 284)
|
||||
ctx.strokeText(strings.points, 788, 284)
|
||||
this.draw.layeredText({
|
||||
ctx: ctx,
|
||||
text: strings.points,
|
||||
x: 792,
|
||||
y: 253,
|
||||
fontSize: 36,
|
||||
fontFamily: this.font,
|
||||
align: "right",
|
||||
width: 36
|
||||
}, [
|
||||
{fill: "#fff"},
|
||||
{outline: "#000", letterBorder: 0.5}
|
||||
])
|
||||
|
||||
this.draw.score({
|
||||
ctx: ctx,
|
||||
@ -494,7 +500,7 @@ class Scoresheet{
|
||||
fontFamily: this.font,
|
||||
align: "right",
|
||||
width: 154,
|
||||
letterSpacing: 1
|
||||
letterSpacing: strings.id === "ja" ? 1 : 0
|
||||
}, [
|
||||
{outline: "#000", letterBorder: 8},
|
||||
{fill: grd}
|
||||
@ -507,7 +513,8 @@ class Scoresheet{
|
||||
fontSize: 29,
|
||||
fontFamily: this.font,
|
||||
letterSpacing: 4,
|
||||
align: "right"
|
||||
align: "right",
|
||||
width: 154
|
||||
}, [
|
||||
{outline: "#000", letterBorder: 8},
|
||||
{fill: "#ffc700"}
|
||||
|
Loading…
Reference in New Issue
Block a user