Normand Briere
2019-06-24 c67da2e5d8655704601d6d06e8bc60aabe212253
Globals.java
....@@ -1,12 +1,32 @@
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 DEBUG = false;
5
+ public static boolean ADVANCED = false;
6
+
7
+ static iCameraPane theRenderer;
78
8
- static int framecount = 0; // general-purpose global count
99 private static boolean LIVE = false;
10
+ public static boolean COMPUTESHADOWWHENLIVE = true;
11
+ public static boolean RENDERSHADOW = true;
12
+
13
+ public static boolean MOUSEDRAGGED = false;
14
+
15
+ // Hold on calculation when moving camera
16
+ public static boolean FREEZEONMOVE = false; // true;
17
+
18
+ static boolean CROWD = false;
19
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
20
+
21
+ static public boolean lighttouched = false;
22
+ static public boolean ANIMATION = false;
23
+ static public int imagecount = 0;
24
+ static public String filename;
25
+
26
+ static public boolean fromscript = false;
27
+ static public boolean fullreset = false;
28
+
29
+ static int framecount = 0; // general-purpose global count
1030 static boolean ONESTEP = false; // do LIVE once
1131
1232 public static boolean isLIVE()