Normand Briere
2019-07-27 1af7d3700724834e40ad8636bc9a56cdc3b19b15
Globals.java
....@@ -1,12 +1,35 @@
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 REPLACEONMAKE = true; // problems when auto-save (works with manual save)
14
+
15
+ public static boolean MOUSEDRAGGED = false;
16
+ public static boolean TIMERRUNNING = false;
17
+
18
+ // Hold on calculation when moving camera
19
+ public static boolean FREEZEONMOVE = false;
20
+
21
+ static boolean CROWD = false;
22
+ static public int drawMode = iCameraPane.DEFAULT; // WARNING
23
+
24
+ static public boolean lighttouched = false;
25
+ static public boolean ANIMATION = false;
26
+ static public int imagecount = 0;
27
+ static public String filename;
28
+
29
+ static public boolean fromscript = false;
30
+ static public boolean fullreset = false;
31
+
32
+ static int framecount = 0; // general-purpose global count
1033 static boolean ONESTEP = false; // do LIVE once
1134
1235 public static boolean isLIVE()