v0.7.0: darkened version information texts

This commit is contained in:
Evan Debenham 2018-07-10 23:32:52 -04:00
parent 8c89075043
commit 7e30247c09
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ public class TitleScene extends PixelScene {
BitmapText version = new BitmapText( "v " + Game.version + "", pixelFont);
version.measure();
version.hardlight( 0xCCCCCC );
version.hardlight( 0x888888 );
version.x = w - version.width();
version.y = h - version.height();
add( version );

View File

@ -139,7 +139,7 @@ public class StatusPane extends Component {
add( pickedUp = new Toolbar.PickedUpItem());
version = new BitmapText( "v" + Game.version, PixelScene.pixelFont);
version.hardlight( 0xCCCCCC );
version.alpha( 0.5f );
add(version);
}