mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
reintroduced infoFill, moved infoFill to mongo
This commit is contained in:
parent
d02bfa8426
commit
dca4948548
@ -117,7 +117,8 @@ class Loader{
|
||||
songSkin: {
|
||||
background: "#ececec",
|
||||
border: ["#fbfbfb", "#8b8b8b"],
|
||||
outline: "#656565"
|
||||
outline: "#656565",
|
||||
infoFill: "#656565"
|
||||
}
|
||||
})
|
||||
}), "/api/categories")
|
||||
|
@ -295,10 +295,12 @@
|
||||
var _h = 22
|
||||
var _x = 628 - _w
|
||||
var _y = 88 - _h
|
||||
if(assets.categories.find(cat=>cat.title == selectedSong.category)){
|
||||
ctx.fillStyle = assets.categories.find(cat=>cat.title == selectedSong.category).songSkin.outline
|
||||
|
||||
let category = assets.categories.find(cat=>cat.title == selectedSong.category)
|
||||
if(category != null && category.songSkin != null && category.songSkin.infoFill != null){
|
||||
ctx.fillStyle = assets.categories.find(cat=>cat.title == selectedSong.category).songSkin.infoFill
|
||||
}else{
|
||||
ctx.fillStyle = assets.categories.find(cat=>cat.title == 'default').songSkin.outline
|
||||
ctx.fillStyle = assets.categories.find(cat=>cat.title == 'default').songSkin.infoFill
|
||||
}
|
||||
this.draw.roundedRect({
|
||||
ctx: ctx,
|
||||
|
Loading…
Reference in New Issue
Block a user