Normand Briere
2019-06-17 26b49d8e26625491f4a407a05e9bc9d72037f938
Globals.java
....@@ -1,12 +1,30 @@
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
+ public static boolean MOUSEDRAGGED = false;
12
+
13
+ // Hold on calculation when moving camera
14
+ public static boolean FREEZEONMOVE = false; // true;
15
+
16
+ static boolean CROWD = false;
17
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
18
+
19
+ static public boolean lighttouched = false;
20
+ static public boolean ANIMATION = false;
21
+ static public int imagecount = 0;
22
+ static public String filename;
23
+
24
+ static public boolean fromscript = false;
25
+ static public boolean fullreset = false;
26
+
27
+ static int framecount = 0; // general-purpose global count
1028 static boolean ONESTEP = false; // do LIVE once
1129
1230 public static boolean isLIVE()