Skip to content

Instantly share code, notes, and snippets.

@agrif
Created July 19, 2011 02:12
Show Gist options
  • Save agrif/1091169 to your computer and use it in GitHub Desktop.
Save agrif/1091169 to your computer and use it in GitHub Desktop.
another example settings.py for rendermode-options
rendermode = ['my-custom-mode']
custom_rendermodes = {
'my-custom-mode' : {'parent' : 'cave',
'description' : 'a custom mode that only renders certain depths',
'options' : {
#'depth_tinting' : False,
#'lighting' : True,
#'only_lit' : True,
'min_depth' : 40,
'max_depth' : 55,
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment