v0.8.1: tweaked the grey color for icon fading, improved fade effect

This commit is contained in:
Evan Debenham 2020-05-09 18:16:01 -04:00
parent b5106467b9
commit cf793e3b0d

View File

@ -153,7 +153,8 @@ public class BuffIndicator extends Component {
for (Buff buff : buffIcons.keySet().toArray(new Buff[0])){
if (!newBuffs.contains(buff)){
Image icon = buffIcons.get( buff ).icon;
icon.origin.set( SIZE / 2 );
icon.origin.set( SIZE / 2f );
icon.alpha(0.6f);
add( icon );
add( new AlphaTweener( icon, 0, 0.6f ) {
@Override
@ -207,7 +208,7 @@ public class BuffIndicator extends Component {
icon.frame( film.get( buff.icon() ) );
add( icon );
grey = new Image( TextureCache.createSolid(0xCC808080));
grey = new Image( TextureCache.createSolid(0xCC666666));
add( grey );
}