SqueezeFlingUpdate.xsd 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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="SqueezeFlingParticleDataType">
  4. <xs:attribute name="SourceBone" type="xs:string" />
  5. <xs:attribute name="DestinationBone" type="xs:string" />
  6. <xs:attribute name="ParticleSystem" type="FXParticleSystemRef" />
  7. </xs:complexType>
  8. <xs:complexType name="SqueezeFlingUpdateModuleData">
  9. <xs:complexContent>
  10. <xs:extension base="UpdateModuleData">
  11. <xs:sequence>
  12. <!-- things we affect -->
  13. <xs:element name="Filter" type="ObjectFilter" minOccurs="1" maxOccurs="1"/>
  14. <!-- things we kill -->
  15. <xs:element name="KillFilter" type="ObjectFilter" minOccurs="0" maxOccurs="1"/>
  16. <xs:element name="ParticleData" type="SqueezeFlingParticleDataType" minOccurs="0" maxOccurs="unbounded" />
  17. </xs:sequence>
  18. <!-- how often we look for targets -->
  19. <xs:attribute name="ScanTime" type="Time" default="0.2s" />
  20. <!-- how quickly we move onto the next potential victim -->
  21. <xs:attribute name="DelayBetweenVictimsTime" type="Time" default="0.3s" />
  22. <!-- units within this range are considered targets -->
  23. <xs:attribute name="EffectDistance" type="SageReal" default="125.0" />
  24. <!-- how fast targets speed towards the group -->
  25. <xs:attribute name="GatherAcceleration" type="SageReal" default="0.01" />
  26. <xs:attribute name="ModelLength" type="SageReal" default="100.0" />
  27. <xs:attribute name="ArmTemplate" type="GameObjectRef" use="optional" />
  28. <xs:attribute name="VictimShader" type="ShaderOverrideRef" use="optional" />
  29. <xs:attribute name="HeightOffGround" type="SageReal" default="50.0" />
  30. </xs:extension>
  31. </xs:complexContent>
  32. </xs:complexType>
  33. </xs:schema>