mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 15:31:51 +08:00
reintroduced infoFill, moved infoFill to mongo
This commit is contained in:
parent
d02bfa8426
commit
dca4948548
@ -117,7 +117,8 @@ class Loader{
|
|||||||
songSkin: {
|
songSkin: {
|
||||||
background: "#ececec",
|
background: "#ececec",
|
||||||
border: ["#fbfbfb", "#8b8b8b"],
|
border: ["#fbfbfb", "#8b8b8b"],
|
||||||
outline: "#656565"
|
outline: "#656565",
|
||||||
|
infoFill: "#656565"
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}), "/api/categories")
|
}), "/api/categories")
|
||||||
|
@ -295,10 +295,12 @@
|
|||||||
var _h = 22
|
var _h = 22
|
||||||
var _x = 628 - _w
|
var _x = 628 - _w
|
||||||
var _y = 88 - _h
|
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{
|
}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({
|
this.draw.roundedRect({
|
||||||
ctx: ctx,
|
ctx: ctx,
|
||||||
|
Loading…
Reference in New Issue
Block a user