option to hide approach circles

This commit is contained in:
yugecin
2016-09-29 23:34:11 +02:00
parent 7f908db6e7
commit fa57e63a2f
5 changed files with 20 additions and 2 deletions

View File

@@ -652,6 +652,20 @@ public class Options {
}
},
DANCE_DRAW_APPROACH ("Draw approach circles", "DrawApproach", "Can get a bit busy when using mirror collage", true) {
@Override
public void click(GameContainer container) {
bool = !bool;
Dancer.drawApproach = bool;
}
@Override
public void read(String s) {
super.read(s);
Dancer.drawApproach = bool;
}
},
PIPPI_ENABLE ("Pippi", "Pippi", "Move in circles like dancing pippi (osu! april fools joke 2016)", false) {
// TODO
},