Normand Briere
2019-08-12 b1d79b74514041a059b454a9f6fc3970773c0cb8
Globals.java
....@@ -1,12 +1,27 @@
11
22 public class Globals
33 {
4
+ public static boolean DEBUG = false;
45 public static boolean ADVANCED = false;
56
67 static iCameraPane theRenderer;
78
89 private static boolean LIVE = false;
910
11
+ // Option to set saturation to 1 when choosing a color first
12
+ public static boolean AUTOSATURATE = true;
13
+ public static boolean MINSHADER = false;
14
+ public static boolean COMPUTESHADOWWHENLIVE = true;
15
+ public static boolean RENDERSHADOW = true;
16
+
17
+ public static boolean REPLACEONMAKE = false;
18
+
19
+ public static boolean MOUSEDRAGGED = false;
20
+ public static boolean TIMERRUNNING = false;
21
+
22
+ // Hold on calculation when moving camera
23
+ public static boolean FREEZEONMOVE = false;
24
+
1025 static boolean CROWD = false;
1126 static public int drawMode = iCameraPane.DEFAULT; // WARNING
1227