Skip to content

Instantly share code, notes, and snippets.

@shadowfox
Created August 29, 2013 22:48
Show Gist options
  • Save shadowfox/6384358 to your computer and use it in GitHub Desktop.
Save shadowfox/6384358 to your computer and use it in GitHub Desktop.
Overviewer config file
# This is a sample config file, meant to give you an idea of how to format your
# config file and what's possible.
# Define the path to your world here. 'My World' in this case will show up as
# the world name on the map interface. If you change it, be sure to also change
# the referenced world names in the render definitions below.
worlds['My World'] = ""
# Define where to put the output here.
outputdir = ""
# This is an item usually specified in a renders dictionary below, but if you
# set it here like this, it becomes the default for all renders that don't
# define it.
# Try "smooth_lighting" for even better looking maps!
rendermode = "lighting"
renders["upper-left"] = {
'world': 'My World',
'northdirection': 'upper-left',
'title': 'North upper left',
}
renders["upper-left-cave"] = {
'world': 'My World',
'northdirection': 'upper-left',
'title': 'North upper left (cave)',
'rendermode': 'cave',
}
renders["upper-right"] = {
'world': 'My World',
'northdirection': 'upper-right',
'title': 'North upper right',
}
renders["upper-right-cave"] = {
'world': 'My World',
'northdirection': 'upper-right',
'title': 'North upper right (cave)',
'rendermode': 'cave',
}
renders["lower-right"] = {
'world': 'My World',
'northdirection': 'lower-right',
'title': 'North lower right',
}
renders["lower-right-cave"] = {
'world': 'My World',
'northdirection': 'lower-right',
'title': 'North lower right (cave)',
'rendermode': 'cave',
}
renders["lower-left"] = {
'world': 'My World',
'northdirection': 'lower-left',
'title': 'North lower left',
}
renders["lower-left-cave"] = {
'world': 'My World',
'northdirection': 'lower-left',
'title': 'North lower left (cave)',
'rendermode': 'cave',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment