Option to hide all objects

This commit is contained in:
yugecin
2016-09-30 23:11:43 +02:00
parent 722180d9ff
commit 5b264a5277
4 changed files with 29 additions and 7 deletions

View File

@@ -784,6 +784,20 @@ public class Options {
}
},
DANCE_HIDE_OBJECTS ("Don't draw objects", "HideObj", "If you only want to see cursors :)", Dancer.hideobjects) {
@Override
public void click(GameContainer container) {
bool = !bool;
Dancer.hideobjects = bool;
}
@Override
public void read(String s) {
super.read(s);
Dancer.hideobjects = bool;
}
},
DANCE_REMOVE_BG ("Never draw background", "RemoveBG", "Hello darkness my old friend", Dancer.removebg) {
@Override
public void click(GameContainer container) {