0

added night rendermode

This commit is contained in:
Aaron Griffith
2011-03-23 00:33:59 -04:00
parent 19a2eafcd5
commit 69bb56dcb4
4 changed files with 79 additions and 3 deletions

View File

@@ -27,6 +27,8 @@ RenderModeInterface *get_render_mode(RenderState *state) {
if (strcmp(rendermode, "lighting") == 0) {
iface = &rendermode_lighting;
} else if (strcmp(rendermode, "night") == 0) {
iface = &rendermode_night;
}
Py_DECREF(rendermode_py);