Changeset 11794 for data/branches/cegui0.8_ogre1.9/gui/fonts
- Timestamp:
- Feb 20, 2018, 11:55:06 PM (7 years ago)
- Location:
- data/branches/cegui0.8_ogre1.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
data/branches/cegui0.8_ogre1.9
- Property svn:mergeinfo changed
/data/branches/cegui0.8 (added) merged: 11119-11120,11122-11123
- Property svn:mergeinfo changed
-
data/branches/cegui0.8_ogre1.9/gui/fonts/Font.xsd
r5701 r11794 10 10 </xsd:complexType> 11 11 <xsd:complexType name="MapType"> 12 <xsd:attribute name=" Codepoint" type="xsd:nonNegativeInteger" use="required" />13 <xsd:attribute name=" Image" type="xsd:string" use="required" />14 <xsd:attribute name=" HorzAdvance" type="xsd:integer" use="optional" default="-1" />12 <xsd:attribute name="codepoint" type="xsd:nonNegativeInteger" use="required" /> 13 <xsd:attribute name="image" type="xsd:string" use="required" /> 14 <xsd:attribute name="horzAdvance" type="xsd:integer" use="optional" default="-1" /> 15 15 </xsd:complexType> 16 16 <xsd:attributeGroup name="FontAttrs"> 17 <xsd:attribute name=" Name" type="xsd:string" use="required" />18 <xsd:attribute name=" Filename" type="xsd:string" use="required" />19 <xsd:attribute name=" ResourceGroup" type="xsd:string" use="optional" default="" />20 <xsd:attribute name=" Type" use="required">17 <xsd:attribute name="name" type="xsd:string" use="required" /> 18 <xsd:attribute name="filename" type="xsd:string" use="required" /> 19 <xsd:attribute name="resourceGroup" type="xsd:string" use="optional" default="" /> 20 <xsd:attribute name="type" use="required"> 21 21 <xsd:simpleType> 22 22 <xsd:restriction base="xsd:string"> … … 26 26 </xsd:simpleType> 27 27 </xsd:attribute> 28 <xsd:attribute name="Size" type="xsd:nonNegativeInteger" use="optional" default="12" /> 29 <xsd:attribute name="NativeHorzRes" type="xsd:nonNegativeInteger" use="optional" default="640" /> 30 <xsd:attribute name="NativeVertRes" type="xsd:nonNegativeInteger" use="optional" default="480" /> 31 <xsd:attribute name="AutoScaled" type="xsd:boolean" use="optional" default="false" /> 32 <xsd:attribute name="AntiAlias" type="xsd:boolean" use="optional" default="true" /> 28 <xsd:attribute name="size" type="xsd:nonNegativeInteger" use="optional" default="12" /> 29 <xsd:attribute name="nativeHorzRes" type="xsd:nonNegativeInteger" use="optional" default="640" /> 30 <xsd:attribute name="nativeVertRes" type="xsd:nonNegativeInteger" use="optional" default="480" /> 31 <xsd:attribute name="autoScaled" default="false"> 32 <xsd:simpleType> 33 <xsd:restriction base="xsd:string"> 34 <xsd:enumeration value="false" /> 35 <xsd:enumeration value="vertical" /> 36 <xsd:enumeration value="horizontal" /> 37 <xsd:enumeration value="min" /> 38 <xsd:enumeration value="max" /> 39 <xsd:enumeration value="true" /> 40 </xsd:restriction> 41 </xsd:simpleType> 42 </xsd:attribute> 43 <xsd:attribute name="antiAlias" type="xsd:boolean" use="optional" default="true" /> 44 <xsd:attribute name="lineSpacing" type="xsd:decimal" use="optional" default="0" /> 45 <xsd:attribute name="version" type="xsd:nonNegativeInteger" use="optional" default="0" /> 33 46 </xsd:attributeGroup> 34 47 </xsd:schema>
Note: See TracChangeset
for help on using the changeset viewer.