Normand Briere
2019-08-18 480ad70047e54b2b92f974e6c2ac5a6c0bdc5a5c
Globals.java
....@@ -1,13 +1,30 @@
11
22 public class Globals
33 {
4
- public static boolean ADVANCED = false;
4
+ static boolean NIMBUSLAF = false; // false;
5
+
6
+ static boolean TOOLTIPS = true; // true;
7
+ static boolean ADVANCED = false; // false;
8
+ static boolean DEBUG = false; // false
59
610 static iCameraPane theRenderer;
711
812 private static boolean LIVE = false;
13
+
14
+ // Option to set saturation to 1 when choosing a color first
15
+ public static boolean AUTOSATURATE = true;
16
+ public static boolean MINSHADER = false;
17
+ public static boolean COMPUTESHADOWWHENLIVE = true;
918 public static boolean RENDERSHADOW = true;
1019
20
+ public static boolean REPLACEONMAKE = false;
21
+
22
+ public static boolean MOUSEDRAGGED = false;
23
+ public static boolean TIMERRUNNING = false;
24
+
25
+ // Hold on calculation when moving camera
26
+ public static boolean FREEZEONMOVE = false;
27
+
1128 static boolean CROWD = false;
1229 static public int drawMode = iCameraPane.DEFAULT; // WARNING
1330