0

Allow regionsets to be named in a settings.py file

This commit is contained in:
Andrew Chin
2012-01-07 15:11:19 -05:00
parent 1baf506a59
commit cb2f0129bc
8 changed files with 53 additions and 36 deletions

View File

@@ -1,4 +1,6 @@
worldpath="test/data/settings/test_world"
world['test'] = "test/data/settings/test_world"
worldname = 'test'
rendermode = "normal"
render["world"] = {

View File

@@ -1,6 +1,8 @@
bgcolor="#000000"
world['test'] = "test/data/settings/test_world"
render["world"] = {
"worldpath": "test/data/settings/test_world",
"worldname": "test",
"bgcolor":"ffff"
}

View File

@@ -1,5 +1,7 @@
world['test'] = "test/data/settings/test_world"
render["world"] = {
"worldpath": "test/data/settings/test_world",
"worldname": "test",
"rendermode": "bad_rendermode",
"northdirection": ["upper-left"],
}