Skip to content

Instantly share code, notes, and snippets.

@lolmaus
Created March 20, 2012 12:14
Show Gist options
  • Save lolmaus/2134541 to your computer and use it in GitHub Desktop.
Save lolmaus/2134541 to your computer and use it in GitHub Desktop.
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