annotate demos/pychan_demo/settings-dist.xml @ 589:d1df6cf5ff23

* Fixed a bug in RenderBackendSDL, the clip area was not properly set. * Renamed the backquad and border commands of the FloatingTextRenderer. * Added the TransparentArea commands to the InstanceRenderer. Note: with addTransparentArea(instance, string, width, height, transparent, front) you can enable an area, that make all instances in this zone and with the same namespace transparent. The string is for the namespace, so you can set one or more namespaces to be transparent. Width and height specifies the size of the area. Transparent defines the intensity of transparency, 255 = invisible. The bool front, enable or disable the z check, so that only instances in front of the source instance could be transparent.
author helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
date Fri, 13 Aug 2010 16:33:36 +0000
parents 00aa20dc8b7f
children e3140f01749d
rev   line source
506
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
1 <?xml version='1.0' encoding='UTF-8'?>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
2 <Settings>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
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>
506
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
8 <Setting name="BitsPerPixel" type="int"> 0 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
9 <Setting name="InitialVolume" type="float"> 5.0 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
10 <Setting name="SDLRemoveFakeAlpha" type="int"> 1 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
11 <Setting name="WindowTitle" type="str"> Pychan demo [FIFE Client] </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
12 <Setting name="WindowIcon" type="str"> gui/icons/pychan_logo.png </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
13 <Setting name="Font" type="str"> fonts/freefont/FreeMono.ttf </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
14 <Setting name="FontGlyphs" strip="0" type="str"> abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.,!?-+/():;%&amp;`'*#=[]\"</Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
15 <Setting name="DefaultFontSize" type="int"> 16 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
16 <Setting name="LogModules" type="list"> controller ; GUI </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
17 <Setting name="PychanDebug" type="bool"> True </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
18 <Setting name="LogToPrompt" type="int"> 1 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
19 <Setting name="LogToFile" type="int"> 0 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
20 <Setting name="ColorKeyEnabled" type="bool"> False </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
21 <Setting name="ColorKey" type="string"> 255,0,255 </Setting>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
22 </Module>
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
23
226e26d1d11e Fixed the pychan demo.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
24 </Settings>