Adjust default values for dancer options

This commit is contained in:
yugecin
2016-09-30 21:51:59 +02:00
parent 0df478544c
commit 4ab767f464
2 changed files with 13 additions and 15 deletions

View File

@@ -28,8 +28,6 @@ import yugecin.opsudance.movers.factories.*;
import yugecin.opsudance.spinners.RektSpinner;
import yugecin.opsudance.spinners.Spinner;
import java.util.Random;
public class Dancer {
public static MoverFactory[] moverFactories = new MoverFactory[] {
@@ -50,14 +48,14 @@ public class Dancer {
public static Dancer instance = new Dancer();
public static boolean mirror; // this should really get its own place somewhere...
public static boolean drawApproach; // this should really get its own place somewhere...
public static boolean removebg; // this should really get its own place somewhere...
public static boolean hideui; // this should really get its own place somewhere...
public static boolean mirror = false; // this should really get its own place somewhere...
public static boolean drawApproach = true; // this should really get its own place somewhere...
public static boolean removebg = true; // this should really get its own place somewhere...
public static boolean hideui = true; // this should really get its own place somewhere...
public static ObjectColorOverrides colorOverride = ObjectColorOverrides.NONE;
public static ObjectColorOverrides colorMirrorOverride = ObjectColorOverrides.NONE;
public static int rgbhueinc = 70; // this should really get its own place somewhere...
public static boolean cursoruselastobjectcolor;
public static boolean cursoruselastobjectcolor = false;
public static MoverDirection moverDirection = MoverDirection.RANDOM;
private int dir;