Normand Briere
2019-08-17 d5d6485126da83b06645e90e3e4ce66659a56009
Globals.java
....@@ -1,12 +1,40 @@
11
22 public class Globals
33 {
4
-static boolean CROWD = false;
5
- static public int drawMode = iCameraPane.DEFAULT; // WARNING
6
- static public boolean lighttouched = false; // WARNING
4
+ public static boolean TOOLTIPS = true; // false;
5
+ public static boolean ADVANCED = false;
6
+ public static boolean DEBUG = false;
7
+
8
+ static iCameraPane theRenderer;
79
8
- static int framecount = 0; // general-purpose global count
910 private static boolean LIVE = false;
11
+
12
+ // Option to set saturation to 1 when choosing a color first
13
+ public static boolean AUTOSATURATE = true;
14
+ public static boolean MINSHADER = false;
15
+ public static boolean COMPUTESHADOWWHENLIVE = true;
16
+ public static boolean RENDERSHADOW = true;
17
+
18
+ public static boolean REPLACEONMAKE = false;
19
+
20
+ public static boolean MOUSEDRAGGED = false;
21
+ public static boolean TIMERRUNNING = false;
22
+
23
+ // Hold on calculation when moving camera
24
+ public static boolean FREEZEONMOVE = false;
25
+
26
+ static boolean CROWD = false;
27
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
28
+
29
+ static public boolean lighttouched = false;
30
+ static public boolean ANIMATION = false;
31
+ static public int imagecount = 0;
32
+ static public String filename;
33
+
34
+ static public boolean fromscript = false;
35
+ static public boolean fullreset = false;
36
+
37
+ static int framecount = 0; // general-purpose global count
1038 static boolean ONESTEP = false; // do LIVE once
1139
1240 public static boolean isLIVE()