25 lines
1.4 KiB
XML
25 lines
1.4 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:t="types">
|
|
<xs:import schemaLocation="../Types.xsd" namespace="types"/>
|
|
|
|
<xs:element name="SoundEmitter">
|
|
<xs:complexType>
|
|
<xs:all>
|
|
<xs:element name="FilePath" type="t:string" minOccurs="0"/>
|
|
<xs:element name="Gain" type="t:double" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>The "volume" of the emitter. A value betweeen 0-1</xs:documentation></xs:annotation>
|
|
<xs:element name="Pitch" type="t:double" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>The pitch of the emitter. A value betweeen 0-1</xs:documentation></xs:annotation>
|
|
<xs:element name="Loop" type="t:bool" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>If the sound should loop or not.</xs:documentation></xs:annotation>
|
|
<xs:element name="MaxDistance" type="t:double" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>The distance where there will no longer be any attenuation.</xs:documentation></xs:annotation>
|
|
<xs:element name="RollOffFactor" type="t:double" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>The rolloff rate of the source.</xs:documentation></xs:annotation>
|
|
<xs:element name="ReferenceDistance" type="t:double" minOccurs="0"/>
|
|
<xs:annotation><xs:documentation>The distance that the source will be the loudest.</xs:documentation></xs:annotation>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |