Adjust default values for dancer options
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user