0

changed lighting rendermode to use new state variables

This commit is contained in:
Aaron Griffith
2011-03-24 19:44:21 -04:00
parent 2d64d2d84d
commit d84af9fa4b
2 changed files with 5 additions and 13 deletions

View File

@@ -72,10 +72,10 @@ typedef struct {
PyObject *black_color, *facemasks_py;
PyObject *facemasks[3];
/* extra block data, loaded off the chunk class */
/* extra data, loaded off the chunk class */
PyObject *skylight, *blocklight;
PyObject *left_blocks, *left_skylight, *left_blocklight;
PyObject *right_blocks, *right_skylight, *right_blocklight;
PyObject *left_skylight, *left_blocklight;
PyObject *right_skylight, *right_blocklight;
/* can be overridden in derived rendermodes to control lighting
arguments are skylight, blocklight */