]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/light.h
drawing range updater update and myrand() (but not usage of it)
[dragonfireclient.git] / src / light.h
index 1827ab53a1d72b4f6a553068840c188f2dcd658c..269948e86bcc2b77ed08e260253651a3963d421b 100644 (file)
@@ -22,6 +22,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "common_irrlicht.h"
 
+/*
+       Day/night cache:
+       Meshes are cached for different day-to-night transition values
+*/
+
+/*#define DAYNIGHT_CACHE_COUNT 3
+// First one is day, last one is night.
+extern u32 daynight_cache_ratios[DAYNIGHT_CACHE_COUNT];*/
+
+/*
+       Lower level lighting stuff
+*/
+
 // This directly sets the range of light
 #define LIGHT_MAX 14
 // Light is stored as 4 bits, thus 15 is the maximum.