.. | .. |
---|
1 | 1 | |
---|
2 | 2 | public class Globals |
---|
3 | 3 | { |
---|
4 | | -static boolean CROWD = false; |
---|
5 | | - static public int drawMode = iCameraPane.DEFAULT; // WARNING |
---|
6 | | - static public boolean lighttouched = false; // WARNING |
---|
| 4 | + static boolean SHOWINFO = true; |
---|
7 | 5 | |
---|
8 | | - static int framecount = 0; // general-purpose global count |
---|
| 6 | + static boolean ADVANCED = false; // false; |
---|
| 7 | + |
---|
| 8 | + static boolean NIMBUSLAF = false; // false; |
---|
| 9 | + |
---|
| 10 | + static boolean TOOLTIPS = true; // true; |
---|
| 11 | + static boolean DEBUG = false; // false |
---|
| 12 | + |
---|
| 13 | + static iCameraPane theRenderer; |
---|
| 14 | + |
---|
9 | 15 | private static boolean LIVE = false; |
---|
| 16 | + |
---|
| 17 | + // Option to set saturation to 1 when choosing a color first |
---|
| 18 | + public static boolean AUTOSATURATE = true; |
---|
| 19 | + public static boolean MINSHADER = false; |
---|
| 20 | + public static boolean COMPUTESHADOWWHENLIVE = true; |
---|
| 21 | + public static boolean RENDERSHADOW = true; |
---|
| 22 | + |
---|
| 23 | + public static boolean REPLACEONMAKE = true; // false; |
---|
| 24 | + |
---|
| 25 | + public static boolean MOUSEDRAGGED = false; |
---|
| 26 | + public static boolean TIMERRUNNING = false; |
---|
| 27 | + |
---|
| 28 | + // Hold on calculation when moving camera |
---|
| 29 | + public static boolean FREEZEONMOVE = false; |
---|
| 30 | + |
---|
| 31 | + static boolean CROWD = false; |
---|
| 32 | + static public int drawMode = iCameraPane.DEFAULT; // WARNING |
---|
| 33 | + |
---|
| 34 | + static public boolean lighttouched = false; |
---|
| 35 | + static public boolean ANIMATION = false; |
---|
| 36 | + static public int imagecount = 0; |
---|
| 37 | + static public String filename; |
---|
| 38 | + |
---|
| 39 | + static public boolean fromscript = false; |
---|
| 40 | + static public boolean fullreset = false; |
---|
| 41 | + |
---|
| 42 | + static int framecount = 0; // general-purpose global count |
---|
10 | 43 | static boolean ONESTEP = false; // do LIVE once |
---|
11 | 44 | |
---|
12 | 45 | public static boolean isLIVE() |
---|