Created
March 20, 2012 12:14
-
-
Save lolmaus/2134541 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
worlds["Overworld"] = "/mnt/disk1/backup/minecraft/worldstorage_overviewer/worldstorage/world" | |
worlds["The Nether"] = "/mnt/disk1/backup/minecraft/worldstorage_overviewer/worldstorage/world_nether" | |
worlds["The End"] = "/mnt/disk1/backup/minecraft/worldstorage_overviewer/worldstorage/world_the_end" | |
outputdir = "/home/miner/minecraft/overviewer-map" | |
renders["1overworld"] = { | |
"world": "Overworld", | |
"title": "Overworld", | |
"rendermode": smooth_lighting, | |
} | |
renders["2overworld_caves"] = { | |
"world": "Overworld", | |
"title": "Overworld Caves", | |
"rendermode": cave, | |
} | |
renders["3overworld_lit_caves"] = { | |
"world": "Overworld", | |
"title": "Overworld Lit Caves", | |
"rendermode": [Base(), EdgeLines(), Cave(only_lit=True), DepthTinting(), ], | |
} | |
renders["4nether_surface"] = { | |
"world": "The Nether", | |
"title": "The Nether", | |
"rendermode": nether_smooth_lighting, | |
} | |
renders["5the_end"] = { | |
"world": "The End", | |
"title": "The End", | |
"rendermode": smooth_lighting, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment