UpdateModules.xsd 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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="AngleZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  31. <xs:element name="AngularRateZ" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  32. <xs:element name="AngularDamping" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  33. <xs:element name="StartSize" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  34. <xs:element name="SizeRate" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  35. <xs:element name="SizeDamping" type="RandCoord3D" minOccurs="1" maxOccurs="1" />
  36. </xs:sequence>
  37. <xs:attribute name="Rotation" type="FXParticleSystem_RotationType" default="ROTATION_OFF" />
  38. </xs:extension>
  39. </xs:complexContent>
  40. </xs:complexType>
  41. <xs:complexType name="FXParticleUpdateModule">
  42. <xs:choice minOccurs="0" maxOccurs="1">
  43. <xs:element name="Default" type="FXParticleUpdateDefault" />
  44. <xs:element name="RenderObject" type="FXParticleUpdateRenderObject" />
  45. </xs:choice>
  46. </xs:complexType>
  47. </xs:schema>