-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeEnvironment.xsd
More file actions
46 lines (43 loc) · 2.77 KB
/
AssetTypeEnvironment.xsd
File metadata and controls
46 lines (43 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<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">
<xs:complexType name="CloudEffectType">
<xs:sequence>
<xs:element name="DarkeningFactor" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="DarkeningFactorRain" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningShadowColor" type="RGBColor" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningLightPosition1" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningLightPosition2" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningLightPosition3" type="Vector2" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningIntensity" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
<xs:element name="LightningDuration" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" xas:byValue="true" />
</xs:sequence>
<xs:attribute name="CloudTexture" type="TextureRef" />
<xs:attribute name="DarkCloudTexture" type="TextureRef" />
<xs:attribute name="AlphaTexture" type="TextureRef" />
<xs:attribute name="PropagateSpeed" type="SageReal" />
<xs:attribute name="Angle" type="SageInt" />
<xs:attribute name="DarkeningRate" type="SageInt" />
<xs:attribute name="LighteningRate" type="SageInt" />
<xs:attribute name="CloudScrollSpeed" type="SageReal" />
<xs:attribute name="DissipateTexture" type="TextureRef" />
<xs:attribute name="DissipateStartLevel" type="SageReal" />
<xs:attribute name="DissipateSpeed" type="SageReal" />
<xs:attribute name="DissipateRateScale" type="SageReal" />
<xs:attribute name="LightningShadows" type="SageBool" />
<xs:attribute name="JitterLightningLightIntensity" type="SageBool" />
<xs:attribute name="JitterLightningLightPosition" type="SageBool" />
<xs:attribute name="LightningChance" type="SageReal" />
<xs:attribute name="LightningFrequency" type="SageReal" />
<xs:attribute name="LightningShadowIntensity" type="SageReal" />
<xs:attribute name="LightningFX" type="FXListWeakRef" />
</xs:complexType>
<xs:complexType name="Environment" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence>
<xs:element name="CloudEffect" type="CloudEffectType"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>