V0.1.1: changed versioning in title to make source code version clear

This commit is contained in:
Evan Debenham 2014-08-11 17:39:03 -04:00
parent 4144385ab5
commit f137fedaff

View File

@ -100,6 +100,8 @@ public class TitleScene extends PixelScene {
};
btnHighscores.setPos( w / 2, btnPlay.top() );
add( btnHighscores );
BitmapText version = new BitmapText( "v " + Game.version, font1x );
version.measure();
@ -107,6 +109,13 @@ public class TitleScene extends PixelScene {
version.x = w - version.width();
version.y = h - version.height();
add( version );
BitmapText source = new BitmapText( "PD source v 1.7.1c", font1x );
source.measure();
source.hardlight( 0x292929 );
source.x = w - source.width();
source.y = h - source.height();
add( source );
PrefsButton btnPrefs = new PrefsButton();
btnPrefs.setPos( w - btnPrefs.width() - 1, 1 );