option to never draw background

This commit is contained in:
yugecin
2016-09-30 09:35:21 +02:00
parent e5d7f0f159
commit 73754e9c7d
4 changed files with 30 additions and 12 deletions

View File

@@ -680,6 +680,20 @@ public class Options {
}
},
DANCE_REMOVE_BG ("Never draw background", "RemoveBG", "Hello darkness my old friend", true) {
@Override
public void click(GameContainer container) {
bool = !bool;
Dancer.removebg = bool;
}
@Override
public void read(String s) {
super.read(s);
Dancer.removebg = bool;
}
},
PIPPI_ENABLE ("Pippi", "Pippi", "Move in circles like dancing pippi (osu! april fools joke 2016)", false) {
// TODO
},