mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Merge pull request #9889 from PJB3005/bay-lights
Lighting optimizations + NVG meson fix
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user