V0.2.1 : Added alternate title text to appropriate locations for Sub-Reddit modding distinctions. Standardized alternate text color int global variable. Added hero icon to hero display. make about scene flare less flashy.
This commit is contained in:
@@ -38,7 +38,7 @@ import com.shatteredpixel.shatteredpixeldungeon.windows.WndRanking;
|
||||
|
||||
public class RankingsScene extends PixelScene {
|
||||
|
||||
private static final String TXT_TITLE = "Top Rankings (SHATTERED)";
|
||||
private static final String TXT_TITLE = "Top Rankings";
|
||||
private static final String TXT_TOTAL = "Total games played: %d";
|
||||
private static final String TXT_NO_GAMES = "No games have been played yet.";
|
||||
|
||||
@@ -74,7 +74,7 @@ public class RankingsScene extends PixelScene {
|
||||
float top = align( (h - ROW_HEIGHT * Rankings.INSTANCE.records.size()) / 2 );
|
||||
|
||||
BitmapText title = PixelScene.createText( TXT_TITLE, 9 );
|
||||
title.hardlight( Window.TITLE_COLOR );
|
||||
title.hardlight( Window.SHPX_COLOR );
|
||||
title.measure();
|
||||
title.x = align( (w - title.width()) / 2 );
|
||||
title.y = align( top - title.height() - GAP );
|
||||
|
||||
Reference in New Issue
Block a user