AssetTypeEnvironment.xsd 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="CloudEffectType">
  4. <xs:sequence>
  5. <xs:element name="DarkeningFactor" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  6. <xs:element name="DarkeningFactorRain" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  7. <xs:element name="LightningShadowColor" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  8. <xs:element name="LightningLightPosition1" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  9. <xs:element name="LightningLightPosition2" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  10. <xs:element name="LightningLightPosition3" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  11. <xs:element name="LightningIntensity" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  12. <xs:element name="LightningDuration" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
  13. </xs:sequence>
  14. <xs:attribute name="CloudTexture" type="TextureRef" />
  15. <xs:attribute name="DarkCloudTexture" type="TextureRef" />
  16. <xs:attribute name="AlphaTexture" type="TextureRef" />
  17. <xs:attribute name="PropagateSpeed" type="SageReal" />
  18. <xs:attribute name="Angle" type="SageInt" />
  19. <xs:attribute name="DarkeningRate" type="SageInt" />
  20. <xs:attribute name="LighteningRate" type="SageInt" />
  21. <xs:attribute name="CloudScrollSpeed" type="SageReal" />
  22. <xs:attribute name="DissipateTexture" type="TextureRef" />
  23. <xs:attribute name="DissipateStartLevel" type="SageReal" />
  24. <xs:attribute name="DissipateSpeed" type="SageReal" />
  25. <xs:attribute name="DissipateRateScale" type="SageReal" />
  26. <xs:attribute name="LightningShadows" type="SageBool" />
  27. <xs:attribute name="JitterLightningLightIntensity" type="SageBool" />
  28. <xs:attribute name="JitterLightningLightPosition" type="SageBool" />
  29. <xs:attribute name="LightningChance" type="SageReal" />
  30. <xs:attribute name="LightningFrequency" type="SageReal" />
  31. <xs:attribute name="LightningShadowIntensity" type="SageReal" />
  32. <xs:attribute name="LightningFX" type="FXListWeakRef" />
  33. </xs:complexType>
  34. <xs:complexType name="Environment" xas:typeGroup="Xml">
  35. <xs:complexContent>
  36. <xs:extension base="BaseAssetType">
  37. <xs:sequence>
  38. <xs:element name="CloudEffect" type="CloudEffectType"/>
  39. </xs:sequence>
  40. </xs:extension>
  41. </xs:complexContent>
  42. </xs:complexType>
  43. </xs:schema>