TeleportStoredObjectsUpdate.xsd 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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:simpleType name="TelefragType">
  4. <xs:restriction base="xs:string">
  5. <xs:enumeration value="NONE" />
  6. <xs:enumeration value="HEALTH_SUBTRACTION" />
  7. <xs:enumeration value="INSTANT_DEATH_TELEPORTER_ONLY" />
  8. <xs:enumeration value="SWAP" />
  9. </xs:restriction>
  10. </xs:simpleType>
  11. <xs:complexType name="TeleportStoredObjectsUpdateModuleData">
  12. <xs:complexContent>
  13. <xs:extension base="UpdateModuleData">
  14. <xs:sequence>
  15. <xs:element name="InstaKillObjectFilter" type="ObjectFilter" minOccurs="0" maxOccurs="1" />
  16. <xs:element name="CollidesWithOnTeleport" type="ObjectFilter" minOccurs="0" />
  17. </xs:sequence>
  18. <xs:attribute name="TriggerFX" type="FXListRef" />
  19. <xs:attribute name="TargetFX" type="FXListRef" />
  20. <xs:attribute name="FadeInTime" type="Time" default="0s" />
  21. <!-- this is the delay that occurs before objects are teleported -->
  22. <xs:attribute name="InitialDelayTime" type="Time" default="0s" />
  23. <!-- this is the duration that objects are removed from the world before returning -->
  24. <xs:attribute name="DelayTime" type="Time" default="0s" />
  25. <xs:attribute name="ScaleFadeInTimeByDistance" type="SageReal" default="0.0" />
  26. <!-- store on second click instead of on first -->
  27. <xs:attribute name="GetObjectsCurrentlyAtStorePosition" type="SageBool" default="false" />
  28. <xs:attribute name="Telefrag" type="TelefragType" default="NONE" />
  29. <xs:attribute name="SpecialPowerTemplate" type="SpecialPowerTemplateRef" />
  30. <xs:attribute name="Shader" type="ShaderOverrideRef" use="optional" />
  31. <xs:attribute name="DisabledTypesToProcess" type="DisabledBitFlags" default="HELD"/>
  32. </xs:extension>
  33. </xs:complexContent>
  34. </xs:complexType>
  35. </xs:schema>