Last active
August 29, 2015 14:01
-
-
Save aheadley/0356160adc46fa59d0db to your computer and use it in GitHub Desktop.
Some examples of possible new overviewer config file formats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"worlds": { | |
"My World": "/path/to/your/world" | |
}, | |
"outputdir": "/tmp/test_render", | |
"rendermode": "lighting", | |
"renders": { | |
"render1": { | |
"world": "My World", | |
"title": "A regular render" | |
}, | |
"render2": { | |
"world": "My World", | |
"title": "Upper-right north direction", | |
"northdirection": "upper-right" | |
}, | |
"render3": { | |
"world": "My World", | |
"title": "Nighttime", | |
"rendermode": "night" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worlds['My World'] = "/path/to/your/world" | |
outputdir = "/tmp/test_render" | |
rendermode = "lighting" | |
renders["render1"] = { | |
'world': 'My World', | |
'title': 'A regular render', | |
} | |
renders["render2"] = { | |
'world': 'My World', | |
'northdirection': 'upper-right', | |
'title': 'Upper-right north direction', | |
} | |
renders["render3"] = { | |
'world': 'My World', | |
'title': 'Nighttime', | |
'rendermode': 'night', | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
outputdir = "/tmp/test_render" | |
rendermode = "lighting" | |
[worlds] | |
My World = "/path/to/your/world" | |
[renders.render1] | |
world = "My World" | |
title = "A regular render" | |
[renders.render2] | |
world = "My World" | |
title = "Upper-right north direction" | |
northdirection = "upper-right" | |
[renders.render3] | |
world = "My World" | |
title = "Nighttime" | |
rendermode = "night" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<config> | |
<worlds> | |
<world name="My World">/path/to/your/world</world> | |
</worlds> | |
<outputdir>/tmp/test_render</outputdir> | |
<rendermode>lighting</rendermode> | |
<renders> | |
<render name="render1"> | |
<world>My World</world> | |
<title>A regular render</title> | |
</render> | |
<render name="render2"> | |
<world>My World</world> | |
<title>Upper-right north direction</title> | |
<northdirection>upper-right</northdirection> | |
</render> | |
<render name="render3"> | |
<world>My World</world> | |
<title>Nighttime</title> | |
<rendermode>night</rendermode> | |
</render> | |
</renders> | |
</config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
worlds: | |
My World: /path/to/your/world | |
outputdir: /tmp/test_render | |
rendermode: lighting | |
renders: | |
render1: | |
world: My World | |
title: A regular render | |
name: render1 | |
render2: | |
world: My World | |
title: Upper-right north direction | |
northdirection: upper-right | |
render3: | |
world: My World | |
title: Nighttime | |
rendermode: night |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment