AssetTypeDrawGroupInfo.xsd 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns="uri:ea.com:eala:asset"
  4. xmlns:at="uri:ea.com:eala:asset:type"
  5. xmlns:xas="uri:ea.com:eala:asset:schema"
  6. targetNamespace="uri:ea.com:eala:asset"
  7. elementFormDefault="qualified"
  8. xmlns:XmlEdit="uri:ea.com:eala:XmlEdit">
  9. <xs:complexType name="DrawGroupInfo" xas:runtimeWrapper="::DrawGroupInfo" xas:typeGroup="Xml">
  10. <xs:complexContent>
  11. <xs:extension base="BaseAssetType">
  12. <xs:sequence>
  13. <xs:element name="TextColor" type="Color4" minOccurs="1" maxOccurs="1" />
  14. <xs:element name="TextDropShadowColor" type="Color4" minOccurs="1" maxOccurs="1" />
  15. </xs:sequence>
  16. <xs:attribute name="FontName" type="xs:string" default="Arial" />
  17. <xs:attribute name="FontSize" type="SageUnsignedInt" default="12" />
  18. <xs:attribute name="IsBold" type="SageBool" />
  19. <xs:attribute name="UsePlayerColor" type="SageBool" default="true" />
  20. <xs:attribute name="DropShadowOffsetX" type="SageInt" default="-1" />
  21. <xs:attribute name="DropShadowOffsetY" type="SageInt" default="-1" />
  22. <xs:attribute name="PixelOffsetAsPercentage" type="SageBool" default="false" />
  23. <xs:attribute name="PixelOffetXInteger" type="SageInt" />
  24. <xs:attribute name="PixelOffetYInteger" type="SageInt" />
  25. <xs:attribute name="PixelOffetXReal" type="SageReal" />
  26. <xs:attribute name="PixelOffetYReal" type="SageReal" />
  27. </xs:extension>
  28. </xs:complexContent>
  29. </xs:complexType>
  30. </xs:schema>