Normand Briere
2019-09-22 e96132853038f55cdb6e27f116852cff0e813f00
Globals.java
....@@ -1,12 +1,47 @@
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 WALK = false;
5
+
6
+ static boolean SHOWINFO = true;
77
8
- static int framecount = 0; // general-purpose global count
8
+ static boolean ADVANCED = false; // false;
9
+
10
+ static boolean NIMBUSLAF = false; // false;
11
+
12
+ static boolean TOOLTIPS = true; // true;
13
+ static boolean DEBUG = false; // false
14
+
15
+ static iCameraPane theRenderer;
16
+
917 private static boolean LIVE = false;
18
+
19
+ // Option to set saturation to 1 when choosing a color first
20
+ public static boolean AUTOSATURATE = true;
21
+ public static boolean MINSHADER = false;
22
+ public static boolean COMPUTESHADOWWHENLIVE = true;
23
+ public static boolean RENDERSHADOW = true;
24
+
25
+ public static boolean REPLACEONMAKE = false; // false;
26
+
27
+ public static boolean MOUSEDRAGGED = false;
28
+ public static boolean TIMERRUNNING = false;
29
+
30
+ // Hold on calculation when moving camera
31
+ public static boolean FREEZEONMOVE = false;
32
+
33
+ static boolean CROWD = false;
34
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
35
+
36
+ static public boolean lighttouched = false;
37
+ static public boolean ANIMATION = false;
38
+ static public int imagecount = 0;
39
+ static public String filename;
40
+
41
+ static public boolean fromscript = false;
42
+ static public boolean fullreset = false;
43
+
44
+ static int framecount = 0; // general-purpose global count
1045 static boolean ONESTEP = false; // do LIVE once
1146
1247 public static boolean isLIVE()