v0.3.1: implemented a new toolbar UI including more minimum resolution width, options for up to 4 quickslots, and ui flip support.
This commit is contained in:
committed by
Evan Debenham
parent
107033eb62
commit
179935fb87
@@ -319,6 +319,11 @@ public class ShatteredPixelDungeon extends Game {
|
||||
public static void quickSlots( int value ){ Preferences.INSTANCE.put( Preferences.KEY_QUICKSLOTS, value ); }
|
||||
|
||||
public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 1); }
|
||||
|
||||
public static void flippedUI( boolean value) {
|
||||
Preferences.INSTANCE.put(Preferences.KEY_FLIPPEDUI, value ); }
|
||||
|
||||
public static boolean flippedUI(){ return Preferences.INSTANCE.getBoolean(Preferences.KEY_FLIPPEDUI, false); }
|
||||
|
||||
public static void intro( boolean value ) {
|
||||
Preferences.INSTANCE.put( Preferences.KEY_INTRO, value );
|
||||
|
||||
Reference in New Issue
Block a user