UIComponentInGameText.xsd 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns="uri:ea.com:eala:asset"
  5. xmlns:at="uri:ea.com:eala:asset:type"
  6. xmlns:xas="uri:ea.com:eala:asset:schema"
  7. targetNamespace="uri:ea.com:eala:asset"
  8. elementFormDefault="qualified"
  9. xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  10. <xs:include schemaLocation="../Includes/UIBaseComponent.xsd"/>
  11. <xs:include schemaLocation="../Includes/Base.xsd"/>
  12. <xs:include schemaLocation="FontDesc.xsd"/>
  13. <xs:complexType name="UIComponentInGameText">
  14. <xs:complexContent>
  15. <xs:extension base="UIBaseComponent">
  16. <xs:sequence>
  17. <xs:element name="StatusTextPosition" type="Vector2" minOccurs="1" maxOccurs="1"/>
  18. <xs:element name="ProductionTextColor" type="RGBColor" minOccurs="1" maxOccurs="1"/>
  19. <xs:element name="ProductionTextFont" type="FontDesc" minOccurs="1" maxOccurs="1"/>
  20. </xs:sequence>
  21. <xs:attribute name="AdjustFactor" type="SageReal" use="required"/>
  22. <xs:attribute name="TextIndent" type="SageReal" use="required"/>
  23. <xs:attribute name="TooltipAppearDelayMS" type="SageUnsignedInt" default="3000"/>
  24. <xs:attribute name="TooltipDisappearDelayMS" type="SageUnsignedInt" default="3000"/>
  25. <xs:attribute name="AptTokenTitle" type="xs:string" use="required"/>
  26. <xs:attribute name="AptTokenPrereq" type="xs:string" use="required"/>
  27. <xs:attribute name="AptTokenCost" type="xs:string" use="required"/>
  28. <xs:attribute name="AptTokenTime" type="xs:string" use="required"/>
  29. <xs:attribute name="AptTokenEnergy" type="xs:string" use="required"/>
  30. <xs:attribute name="AptTokenShortDesc" type="xs:string" use="required"/>
  31. <xs:attribute name="AptTokenLongDesc" type="xs:string" use="required"/>
  32. <xs:attribute name="ProductionTextConstruction" type="xs:string" use="required"/>
  33. <xs:attribute name="ProductionTextUpgrade" type="xs:string" use="required"/>
  34. <xs:attribute name="ProductionTextRecruit" type="xs:string" use="required"/>
  35. <xs:attribute name="ProductionTextScale" type="SageReal" use="required"/>
  36. <xs:attribute name="SubtitleStringLabelPrefix" type="xs:string" use="required"/>
  37. <xs:attribute name="SubtitleStringLabelSuffix" type="xs:string" use="required"/>
  38. <xs:attribute name="SubtitleStringExclusionChar" type="xs:string" use="required"/>
  39. </xs:extension>
  40. </xs:complexContent>
  41. </xs:complexType>
  42. </xs:schema>