UpdateModules.xsd 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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="FXParticleUpdateBase">
  4. <xs:complexContent>
  5. <xs:extension base="FXParticleBaseModule">
  6. </xs:extension>
  7. </xs:complexContent>
  8. </xs:complexType>
  9. <xs:complexType name="FXParticleUpdateDefault">
  10. <xs:complexContent>
  11. <xs:extension base="FXParticleUpdateBase">
  12. <xs:sequence>
  13. <xs:element name="SizeRate" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  14. <xs:element name="SizeRateDamping" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" xas:initialize="1.0f, 1.0f"/>
  15. <xs:element name="AngleZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  16. <xs:element name="AngularRateZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  17. <xs:element name="AngularDamping" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  18. <xs:element name="AngleXY" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  19. <xs:element name="AngularRateXY" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  20. <xs:element name="AngularDampingXY" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" xas:initialize="1.0f, 1.0f" />
  21. </xs:sequence>
  22. <xs:attribute name="Rotation" type="FXParticleSystem_RotationType" default="ROTATION_OFF" />
  23. </xs:extension>
  24. </xs:complexContent>
  25. </xs:complexType>
  26. <xs:complexType name="FXParticleUpdateRenderObject">
  27. <xs:complexContent>
  28. <xs:extension base="FXParticleUpdateBase">
  29. <xs:sequence>
  30. <xs:element name="AngleX" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  31. <xs:element name="AngularRateX" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  32. <xs:element name="AngleY" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  33. <xs:element name="AngularRateY" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  34. <xs:element name="AngleZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  35. <xs:element name="AngularRateZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  36. <xs:element name="AngularDamping" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  37. <xs:element name="StartSize" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  38. <xs:element name="SizeRate" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  39. <xs:element name="SizeDamping" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  40. </xs:sequence>
  41. <xs:attribute name="Rotation" type="FXParticleSystem_RotationType" default="ROTATION_OFF" />
  42. </xs:extension>
  43. </xs:complexContent>
  44. </xs:complexType>
  45. <xs:complexType name="FXParticleUpdateModule">
  46. <xs:choice minOccurs="0" maxOccurs="1">
  47. <xs:element name="Default" type="FXParticleUpdateDefault" />
  48. <xs:element name="RenderObject" type="FXParticleUpdateRenderObject" />
  49. </xs:choice>
  50. </xs:complexType>
  51. </xs:schema>