Normand Briere
2019-08-12 8f1afe25ea8fc8801aab66331c32a50859a758c2
Globals.java
....@@ -1,12 +1,39 @@
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 ADVANCED = false;
5
+ public static boolean DEBUG = false;
6
+
7
+ static iCameraPane theRenderer;
78
8
- static int framecount = 0; // general-purpose global count
99 private static boolean LIVE = false;
10
+
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
+
25
+ static boolean CROWD = false;
26
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
27
+
28
+ static public boolean lighttouched = false;
29
+ static public boolean ANIMATION = false;
30
+ static public int imagecount = 0;
31
+ static public String filename;
32
+
33
+ static public boolean fromscript = false;
34
+ static public boolean fullreset = false;
35
+
36
+ static int framecount = 0; // general-purpose global count
1037 static boolean ONESTEP = false; // do LIVE once
1138
1239 public static boolean isLIVE()