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