-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverviewer.conf
More file actions
35 lines (30 loc) · 850 Bytes
/
Copy pathoverviewer.conf
File metadata and controls
35 lines (30 loc) · 850 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
25
26
27
28
29
30
31
32
33
34
35
from .optimizeimages import pngnq, optipng
worlds["survival"] = "/world"
renders["survivalday"] = {
"world": "survival",
"title": "Day",
"rendermode": smooth_lighting,
"dimension": "overworld",
"optimizeimg":[pngnq(sampling=1), optipng(olevel=3)],
"center":[268, -1077],
"defaultzoom":6
}
renders["survivalnight"] = {
"world": "survival",
"title": "Night",
"rendermode": smooth_night,
"dimension": "overworld",
"optimizeimg":[pngnq(sampling=1), optipng(olevel=3)],
"center":[268, -1077],
"defaultzoom":6
}
renders["survivalnether"] = {
"world": "survival",
"title": "Nether",
"rendermode": nether_smooth_lighting,
"dimension": "nether",
"optimizeimg":[pngnq(sampling=1), optipng(olevel=3)],
"defaultzoom":6
}
outputdir = "/map"
texturepath = "/config/textures.jar"