Normand Briere
2019-08-20 564f4d12d93813b5d680fc24d4f118c3886d96ed
Globals.java
....@@ -1,12 +1,42 @@
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
+ 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
+
10
+ static iCameraPane theRenderer;
711
8
- static int framecount = 0; // general-purpose global count
912 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;
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
+
28
+ static boolean CROWD = false;
29
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
30
+
31
+ static public boolean lighttouched = false;
32
+ static public boolean ANIMATION = false;
33
+ static public int imagecount = 0;
34
+ static public String filename;
35
+
36
+ static public boolean fromscript = false;
37
+ static public boolean fullreset = false;
38
+
39
+ static int framecount = 0; // general-purpose global count
1040 static boolean ONESTEP = false; // do LIVE once
1141
1242 public static boolean isLIVE()