v0.2.4: removed PD's source from title scene (not needed now that we're on latest, may add to about scene if it's needed again)
This commit is contained in:
@@ -146,18 +146,11 @@ public class TitleScene extends PixelScene {
|
|||||||
btnHighscores.setPos( w / 2, btnPlay.top() );
|
btnHighscores.setPos( w / 2, btnPlay.top() );
|
||||||
}
|
}
|
||||||
|
|
||||||
BitmapText source = new BitmapText( "PD source v 1.7.5a", font1x );
|
|
||||||
source.measure();
|
|
||||||
source.hardlight( 0x444444 );
|
|
||||||
source.x = w - source.width();
|
|
||||||
source.y = h - source.height();
|
|
||||||
add( source );
|
|
||||||
|
|
||||||
BitmapText version = new BitmapText( "v " + Game.version + "", font1x );
|
BitmapText version = new BitmapText( "v " + Game.version + "", font1x );
|
||||||
version.measure();
|
version.measure();
|
||||||
version.hardlight( 0xCCCCCC );
|
version.hardlight( 0xCCCCCC );
|
||||||
version.x = w - version.width();
|
version.x = w - version.width();
|
||||||
version.y = h - version.height() - source.height();
|
version.y = h - version.height();
|
||||||
add( version );
|
add( version );
|
||||||
|
|
||||||
PrefsButton btnPrefs = new PrefsButton();
|
PrefsButton btnPrefs = new PrefsButton();
|
||||||
|
|||||||
Reference in New Issue
Block a user