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