Merge pull request #9889 from PJB3005/bay-lights

Lighting optimizations + NVG meson fix
This commit is contained in:
Mloc
2015-07-09 14:50:10 +01:00
12 changed files with 172 additions and 120 deletions

View File

@@ -957,7 +957,9 @@ var/list/be_special_flags = list(
#define WALL_CAN_OPEN 1
#define WALL_OPENING 2
#define CLAMP01(x) max(0, min(1, x))
#define Clamp(x, y, z) (x <= y ? y : (x >= z ? z : x))
#define CLAMP01(x) (Clamp(x, 0, 1))
#define DEFAULT_WALL_MATERIAL "steel"
#define DEFAULT_TABLE_MATERIAL "plastic"