Normand Briere
2019-08-18 66aca73cce89e4b4d7521862760edf4b0888bc38
Globals.java
....@@ -1,10 +1,30 @@
11
22 public class Globals
33 {
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
9
+
410 static iCameraPane theRenderer;
511
612 private static boolean LIVE = false;
713
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;
18
+ public static boolean RENDERSHADOW = true;
19
+
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
+
828 static boolean CROWD = false;
929 static public int drawMode = iCameraPane.DEFAULT; // WARNING
1030