-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeDrawGroupInfo.xsd
More file actions
32 lines (30 loc) · 1.49 KB
/
AssetTypeDrawGroupInfo.xsd
File metadata and controls
32 lines (30 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="uri:ea.com:eala:asset"
xmlns:at="uri:ea.com:eala:asset:type"
xmlns:xas="uri:ea.com:eala:asset:schema"
targetNamespace="uri:ea.com:eala:asset"
elementFormDefault="qualified"
xmlns:XmlEdit="uri:ea.com:eala:XmlEdit">
<xs:complexType name="DrawGroupInfo" xas:runtimeWrapper="::DrawGroupInfo" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence>
<xs:element name="TextColor" type="Color4" minOccurs="1" maxOccurs="1" />
<xs:element name="TextDropShadowColor" type="Color4" minOccurs="1" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="FontName" type="xs:string" default="Arial" />
<xs:attribute name="FontSize" type="SageUnsignedInt" default="12" />
<xs:attribute name="IsBold" type="SageBool" />
<xs:attribute name="UsePlayerColor" type="SageBool" default="true" />
<xs:attribute name="DropShadowOffsetX" type="SageInt" default="-1" />
<xs:attribute name="DropShadowOffsetY" type="SageInt" default="-1" />
<xs:attribute name="PixelOffsetAsPercentage" type="SageBool" default="false" />
<xs:attribute name="PixelOffetXInteger" type="SageInt" />
<xs:attribute name="PixelOffetYInteger" type="SageInt" />
<xs:attribute name="PixelOffetXReal" type="SageReal" />
<xs:attribute name="PixelOffetYReal" type="SageReal" />
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>