reintroduced infoFill, moved infoFill to mongo

This commit is contained in:
mnvdk 2020-04-17 18:35:39 +02:00
parent d02bfa8426
commit dca4948548
2 changed files with 8 additions and 5 deletions

View File

@ -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")

View File

@ -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,