Page MenuHomePhabricator

(An Untitled Masterwork)
ActivePublic

Authored by stwalkerster on May 12 2016, 10:34 PM.
Tags
None
Referenced Files
F597:
May 12 2016, 10:34 PM
Subscribers
None
import os
from common import marker_definitions
from observer import JSObserver
configWorldUnixName = os.environ.get('BUILD_WORLD_UNIX_NAME')
configWorldHumanName = os.environ.get('BUILD_WORLD_NAME')
outputdir = "maps/" + configWorldUnixName
customwebassets = "assets"
processes = 2
observer = JSObserver(outputdir=outputdir, minrefresh=10)
worlds = dict()
worlds[configWorldHumanName] = "worlds/" + configWorldUnixName
world = configWorldHumanName
rendermode = "smooth_lighting"
d_directions = dict(North="upper-left", South="lower-right", East="upper-right", West="lower-left")
renders = dict()
for directionName, directionCode in d_directions:
renders[configWorldUnixName + "-overworld-day-" + directionName] = {
"title": "Day - " + directionName,
"dimension": "overworld",
"northdirection": directionCode,
"renderchecks": "0",
'markers': marker_definitions(),
}

Event Timeline

stwalkerster created this object with visibility "Public (No Login Required)".
import-bot changed the edit policy from "All Users" to "Community (Project)".Feb 3 2017, 3:03 PM