annotate demos/pychan_demo/settings-dist.xml @ 667:a5809f60d548

* Removed the instance id unique check from the loader.
author helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
date Mon, 08 Nov 2010 18:21:05 +0000
parents e3140f01749d
children
rev   line source
661
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
1 <?xml version='1.0' encoding='UTF-8'?>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
2 <Settings>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
3 <Module name="FIFE">
538
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 506
diff changeset
4 <Setting name="FullScreen" type="bool"> False </Setting>
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 506
diff changeset
5 <Setting name="PlaySounds" type="bool"> True </Setting>
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 506
diff changeset
6 <Setting name="RenderBackend" type="str"> OpenGL </Setting>
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 506
diff changeset
7 <Setting name="ScreenResolution" type="str">1024x768</Setting>
661
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
8 <Setting name="BitsPerPixel" type="int"> 0 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
9 <Setting name="InitialVolume" type="float"> 5.0 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
10 <Setting name="SDLRemoveFakeAlpha" type="int"> 1 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
11 <Setting name="WindowTitle" type="str"> Pychan demo [FIFE Client] </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
12 <Setting name="WindowIcon" type="str"> gui/icons/pychan_logo.png </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
13 <Setting name="Font" type="str"> fonts/freefont/FreeMono.ttf </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
14 <Setting name="FontGlyphs" strip="0" type="str"> abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.,!?-+/():;%&amp;`'*#=[]\"</Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
15 <Setting name="DefaultFontSize" type="int"> 16 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
16 <Setting name="LogModules" type="list"> controller ; GUI </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
17 <Setting name="PychanDebug" type="bool"> True </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
18 <Setting name="LogToPrompt" type="int"> 1 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
19 <Setting name="LogToFile" type="int"> 0 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
20 <Setting name="ColorKeyEnabled" type="bool"> False </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
21 <Setting name="ColorKey" type="string"> 255,0,255 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
22 <Setting name="Lighting" type="int"> 0 </Setting>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
23 </Module>
e3140f01749d * Merged the light branch back into trunk.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 538
diff changeset
24
506
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
25 </Settings>