Created
December 31, 2011 01:45
-
-
Save agrif/1542416 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
world_path = "path/to/world" | |
north_direction = LowerLeft | |
renders = [ | |
{ | |
'rendermodes': [SmoothLighting, Night], | |
}, | |
{ | |
# override global world_path and north_direction | |
'world_path': "/path/to/another/world", | |
'north_direction': UpperLeft, | |
'rendermodes': [ | |
SmoothLighting, | |
Normal, | |
# override render-range | |
{'mode': Cave, 'render-range': Range(-100, 100, -100, 100)}, | |
] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment