Last change
on this file since 9930 was
8079,
checked in by landauf, 14 years ago
|
merged usability branch back to trunk
incomplete summary of the changes in this branch:
- enhanced keyboard navigation in GUIs
- implemented new graphics menu and changeable window size at runtime
- added developer mode
- HUD shows if game is paused, game pauses if ingame menu is opened
- removed a few obsolete commands and hid some that are more for internal use
- numpad works in console and gui
- faster loading of level info
- enhanced usage of compositors (Shader class)
- improved camera handling, configurable FOV and aspect ratio
|
-
Property svn:eol-style set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | <?xml version="1.0"?> |
---|
2 | <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> |
---|
3 | |
---|
4 | <xsd:element name="CEGUIConfig" type="CEGUIConfigType"/> |
---|
5 | |
---|
6 | <xsd:simpleType name="LogLevel"> |
---|
7 | <xsd:restriction base="xsd:string"> |
---|
8 | <xsd:enumeration value="Errors"/> |
---|
9 | <xsd:enumeration value="Standard"/> |
---|
10 | <xsd:enumeration value="Informative"/> |
---|
11 | <xsd:enumeration value="Insane"/> |
---|
12 | </xsd:restriction> |
---|
13 | </xsd:simpleType> |
---|
14 | |
---|
15 | <xsd:complexType name="CEGUIConfigType"> |
---|
16 | <xsd:attribute name="Logfile" type="xsd:string" use="optional" default=""/> |
---|
17 | <xsd:attribute name="Scheme" type="xsd:string" use="optional" default=""/> |
---|
18 | <xsd:attribute name="DefaultFont" type="xsd:string" use="optional" default=""/> |
---|
19 | <xsd:attribute name="Layout" type="xsd:string" use="optional" default=""/> |
---|
20 | <xsd:attribute name="InitScript" type="xsd:string" use="optional" default=""/> |
---|
21 | <xsd:attribute name="TerminateScript" type="xsd:string" use="optional" default=""/> |
---|
22 | <xsd:attribute name="DefaultResourceGroup" type="xsd:string" use="optional" default="" /> |
---|
23 | <xsd:attribute name="LoggingLevel" type="LogLevel" use="optional" default="Standard" /> |
---|
24 | </xsd:complexType> |
---|
25 | |
---|
26 | </xsd:schema> |
---|
27 | |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.