Increase name label background opacity as per Robin's suggestion

This commit is contained in:
Nick Winter 2016-05-31 17:22:37 -07:00
parent 81b550aeb3
commit 790c0375f1

View file

@ -83,7 +83,7 @@ module.exports = class Label extends CocoClass
o.fontColor = '#c66'
else if @style is 'name' and @sprite?.thang?.team is 'ogres'
o.fontColor = '#66c'
o.backgroundFillColor = {D: 'white', S: 'rgba(0,0,0,0.4)', N: 'rgba(0,0,0,0.5)'}[st]
o.backgroundFillColor = {D: 'white', S: 'rgba(0,0,0,0.4)', N: 'rgba(0,0,0,0.7)'}[st]
o.backgroundStrokeColor = {D: 'black', S: 'rgba(0,0,0,0.6)', N: 'rgba(0,0,0,0)'}[st]
o.backgroundStrokeStyle = {D: 2, S: 1, N: 1}[st]
o.backgroundBorderRadius = {D: 10, S: 3, N: 3}[st]