GatherEjectUpdate.xsd 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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:complexType name="GatherEjectUpdateModuleData">
  4. <xs:complexContent>
  5. <xs:extension base="UpdateModuleData">
  6. <xs:sequence>
  7. <!-- how quickly the group spins in all 3 axis -->
  8. <xs:element name="RotationSpeed" type="Vector3" />
  9. <!-- how closely units pack together in the group -->
  10. <xs:element name="UnitSpacing" type="Vector3" />
  11. <!-- things we affect -->
  12. <xs:element name="Filter" type="ObjectFilter" minOccurs="1" maxOccurs="1"/>
  13. </xs:sequence>
  14. <!-- how long this effect lasts -->
  15. <xs:attribute name="Lifetime" type="Time" default="10s" />
  16. <!-- number of units in a group row (max units will be Slots cubed) -->
  17. <xs:attribute name="Slots" type="SageInt" default="5" />
  18. <!-- how often we look for targets -->
  19. <xs:attribute name="ScanTime" type="Time" default="0.2s" />
  20. <!-- height of the group centre -->
  21. <xs:attribute name="HeightOffGround" type="SageReal" default="50.0" />
  22. <!-- units within this range are considered targets -->
  23. <xs:attribute name="EffectDistance" type="SageReal" default="125.0" />
  24. <!-- targets within this range are lifted into the group, rather than being dragged along the ground -->
  25. <xs:attribute name="LiftOffGroundDistance" type="SageReal" default="75.0" />
  26. <!-- how fast targets speed towards the group -->
  27. <xs:attribute name="GatherAcceleration" type="SageReal" default="0.01" />
  28. </xs:extension>
  29. </xs:complexContent>
  30. </xs:complexType>
  31. </xs:schema>