-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini.py
More file actions
26 lines (19 loc) · 843 Bytes
/
mini.py
File metadata and controls
26 lines (19 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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['Overworld'] = "/world"
# Define where to put the output here.
outputdir = "/var/www/html"
# 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"
# This example is the same as above, but rotated
renders["mini"] = {
'world': 'Overworld',
'title': 'tiny',
'crop': (-500, -500, 500, 500),
}