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