AssetTypeJoypadCommandBarTemplate.xsd 1.3 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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="http://tempuri.org/XmlEdit.xsd">
  3. <xs:include schemaLocation="Base/AssetBase.xsd"/>
  4. <xs:include schemaLocation="Includes/Base.xsd"/>
  5. <xs:complexType name="JoypadCommandBarTemplateButtonSlot">
  6. <xs:attribute name="Ordinal" type="SageUnsignedInt" use="required"/>
  7. <xs:attribute name="Button" type="JoypadCommandBarButtonTemplateRef" use="required"/>
  8. </xs:complexType>
  9. <xs:complexType name="JoypadCommandBarTemplate" xas:runtimeWrapper="::Sage::UI::Joypad::CommandBar::CommandBarTemplate" xas:typeGroup="Xml">
  10. <xs:complexContent>
  11. <xs:extension base="BaseAssetType">
  12. <xs:sequence>
  13. <xs:element name="Slot" type="JoypadCommandBarTemplateButtonSlot" minOccurs="0" maxOccurs="unbounded"/>
  14. <xs:element name="GeneralButton" type="JoypadCommandBarButtonTemplateRef" minOccurs="0" maxOccurs="unbounded"/>
  15. </xs:sequence>
  16. <xs:attribute name="HomeButton" type="JoypadCommandBarButtonTemplateRef"/>
  17. </xs:extension>
  18. </xs:complexContent>
  19. </xs:complexType>
  20. </xs:schema>