Normand Briere
2019-06-16 372b7fd481a476cd659713a4a01bf28bf6760cbe
Globals.java
....@@ -1,12 +1,28 @@
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 = true; //false;
5
+
6
+ static iCameraPane theRenderer;
77
8
- static int framecount = 0; // general-purpose global count
98 private static boolean LIVE = false;
9
+ public static boolean RENDERSHADOW = true;
10
+
11
+ // Hold on calculation when moving camera
12
+ public static boolean FREEZEONMOVE = false; // true;
13
+
14
+ static boolean CROWD = false;
15
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
16
+
17
+ static public boolean lighttouched = false;
18
+ static public boolean ANIMATION = false;
19
+ static public int imagecount = 0;
20
+ static public String filename;
21
+
22
+ static public boolean fromscript = false;
23
+ static public boolean fullreset = false;
24
+
25
+ static int framecount = 0; // general-purpose global count
1026 static boolean ONESTEP = false; // do LIVE once
1127
1228 public static boolean isLIVE()