Steam Audio issue fixed, volume slider issue fixed
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -93,6 +93,7 @@ GameObject:
|
||||
- component: {fileID: 1567291592690202059}
|
||||
- component: {fileID: 8756359772621811462}
|
||||
- component: {fileID: 6597554986000412572}
|
||||
- component: {fileID: 6564746254256282602}
|
||||
m_Layer: 0
|
||||
m_Name: Main Camera
|
||||
m_TagString: MainCamera
|
||||
@@ -175,7 +176,7 @@ AudioListener:
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 285459124454274477}
|
||||
m_Enabled: 1
|
||||
m_Enabled: 0
|
||||
--- !u!114 &6874539830441913527
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -364,6 +365,35 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
nonRigidbodyVelocity: 0
|
||||
attenuationObject: {fileID: 0}
|
||||
--- !u!114 &6564746254256282602
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 285459124454274477}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 6fd9ebf1401392e4bbd47fea32f47642, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
currentBakedListener: {fileID: 0}
|
||||
applyReverb: 0
|
||||
reverbType: 0
|
||||
useAllProbeBatches: 0
|
||||
probeBatches: []
|
||||
mTotalDataSize: 0
|
||||
mProbeDataSizes:
|
||||
mIdentifier:
|
||||
type: 0
|
||||
variation: 0
|
||||
endpointInfluence:
|
||||
center:
|
||||
x: 0
|
||||
y: 0
|
||||
z: 0
|
||||
radius: 0
|
||||
mProbeBatchesUsed: []
|
||||
--- !u!1 &326335054389456799
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -3381,8 +3411,6 @@ GameObject:
|
||||
- component: {fileID: 4833661431984909633}
|
||||
- component: {fileID: 6982718084823378580}
|
||||
- component: {fileID: 7143839380141204878}
|
||||
- component: {fileID: 4420552791209831543}
|
||||
- component: {fileID: 2875548118707696675}
|
||||
m_Layer: 0
|
||||
m_Name: XR Origin
|
||||
m_TagString: Player
|
||||
@@ -3500,49 +3528,6 @@ MonoBehaviour:
|
||||
TeleportRayLine: {fileID: 1472230073214394331}
|
||||
defaultGravity: {fileID: 1291266247855740630}
|
||||
isInSpace: 0
|
||||
--- !u!114 &4420552791209831543
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3865165877314776266}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 86c6556701af9e04380698b89f691b6e, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
nonRigidbodyVelocity: 0
|
||||
attenuationObject: {fileID: 3865165877314776266}
|
||||
--- !u!114 &2875548118707696675
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3865165877314776266}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 6fd9ebf1401392e4bbd47fea32f47642, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
currentBakedListener: {fileID: 0}
|
||||
applyReverb: 0
|
||||
reverbType: 0
|
||||
useAllProbeBatches: 0
|
||||
probeBatches: []
|
||||
mTotalDataSize: 0
|
||||
mProbeDataSizes:
|
||||
mIdentifier:
|
||||
type: 0
|
||||
variation: 0
|
||||
endpointInfluence:
|
||||
center:
|
||||
x: 0
|
||||
y: 0
|
||||
z: 0
|
||||
radius: 0
|
||||
mProbeBatchesUsed: []
|
||||
--- !u!1 &3920485686434598800
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
|
||||
@@ -17,6 +17,8 @@ public class AudioSliderDragHandler : MonoBehaviour, IBeginDragHandler, IDragHan
|
||||
private Vector2 backgroundStart;
|
||||
private float backgroundWidth;
|
||||
|
||||
public System.Action<float> OnValueChanged;
|
||||
|
||||
void Awake()
|
||||
{
|
||||
handleRect = GetComponent<RectTransform>();
|
||||
@@ -80,6 +82,7 @@ public class AudioSliderDragHandler : MonoBehaviour, IBeginDragHandler, IDragHan
|
||||
CurrentValue = Mathf.Lerp(minValue, maxValue, normalized);
|
||||
|
||||
//Debug.Log(warningThreshholdValue);
|
||||
OnValueChanged?.Invoke(CurrentValue);
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -17,8 +17,9 @@ public class SliderToVCA : MonoBehaviour
|
||||
private void Awake()
|
||||
{
|
||||
slider = GetComponent<AudioSliderDragHandler>();
|
||||
slider.OnValueChanged += ApplyVolume;
|
||||
}
|
||||
private void Start()
|
||||
private void Start()
|
||||
{
|
||||
float initialValue = GetInitialValueFromAudioManager();
|
||||
slider.SetHandlePosition(initialValue); // we will add this function
|
||||
@@ -40,7 +41,7 @@ private float GetInitialValueFromAudioManager()
|
||||
case VCATarget.UI:
|
||||
return AudioManager.Instance.UIVolume;
|
||||
default:
|
||||
return 1f;
|
||||
return 0.5f;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,6 @@ GameObject:
|
||||
- component: {fileID: 1377620620750533915}
|
||||
- component: {fileID: 1970713256952188388}
|
||||
- component: {fileID: 5044934254662751385}
|
||||
- component: {fileID: -4170824526974918850}
|
||||
m_Layer: 0
|
||||
m_Name: Camera
|
||||
m_TagString: Untagged
|
||||
@@ -93,7 +92,7 @@ AudioListener:
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1135870841938864998}
|
||||
m_Enabled: 1
|
||||
m_Enabled: 0
|
||||
--- !u!114 &5044934254662751385
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -137,20 +136,6 @@ MonoBehaviour:
|
||||
mipBias: 0
|
||||
varianceClampScale: 0.9
|
||||
contrastAdaptiveSharpening: 0
|
||||
--- !u!114 &-4170824526974918850
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1135870841938864998}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 86c6556701af9e04380698b89f691b6e, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
nonRigidbodyVelocity: 0
|
||||
attenuationObject: {fileID: 0}
|
||||
--- !u!1 &8146527781413792986
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
|
||||
Binary file not shown.
@@ -116,34 +116,45 @@ public class AudioManager : MonoBehaviour
|
||||
_instance.sfxVCA = RuntimeManager.GetVCA("vca:/SFX");
|
||||
_instance.uiVCA = RuntimeManager.GetVCA("vca:/UI");
|
||||
|
||||
_instance.masterVCA.setVolume(_instance.MasterVolume);
|
||||
_instance.musicVCA.setVolume(_instance.MusicVolume);
|
||||
_instance.ambienceVCA.setVolume(_instance.AmbienceVolume);
|
||||
_instance.sfxVCA.setVolume(_instance.SFXVolume);
|
||||
_instance.uiVCA.setVolume(_instance.UIVolume);
|
||||
|
||||
}
|
||||
|
||||
public void SetMasterVCA(float value)
|
||||
{
|
||||
masterVCA.setVolume(value);
|
||||
MasterVolume = value;
|
||||
masterVCA.setVolume(MasterVolume);
|
||||
}
|
||||
|
||||
public void SetMusicVCA(float value)
|
||||
{
|
||||
musicVCA.setVolume(value);
|
||||
MusicVolume = value;
|
||||
musicVCA.setVolume(MusicVolume);
|
||||
}
|
||||
|
||||
public void SetAmbientVCA(float value)
|
||||
{
|
||||
ambienceVCA.setVolume(value);
|
||||
AmbienceVolume = value;
|
||||
ambienceVCA.setVolume(AmbienceVolume);
|
||||
}
|
||||
|
||||
public void SetSFXVCA(float value)
|
||||
{
|
||||
sfxVCA.setVolume(value);
|
||||
SFXVolume = value;
|
||||
sfxVCA.setVolume(SFXVolume);
|
||||
}
|
||||
|
||||
public void SetUIVCA(float value)
|
||||
{
|
||||
|
||||
uiVCA.setVolume(value);
|
||||
UIVolume = value;
|
||||
uiVCA.setVolume(UIVolume);
|
||||
}
|
||||
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
if (_instance && _instance != this)
|
||||
@@ -161,23 +172,6 @@ public class AudioManager : MonoBehaviour
|
||||
return eventInstance;
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
//musicBus.setVolume(MusicVolume);
|
||||
//ambientBus.setVolume(AmbienceVolume);
|
||||
//sfxBus.setVolume(SFXVolume);
|
||||
//uiBus.setVolume(UIVolume);
|
||||
//masterBus.setVolume(MasterVolume);
|
||||
|
||||
|
||||
//VCA volumes
|
||||
masterVCA.setVolume(MasterVolume);
|
||||
ambienceVCA.setVolume(AmbienceVolume);
|
||||
musicVCA.setVolume(MusicVolume);
|
||||
sfxVCA.setVolume(SFXVolume);
|
||||
uiVCA.setVolume(UIVolume);
|
||||
}
|
||||
|
||||
public static bool IsEventReferenceValid(EventReference eventReference)
|
||||
{
|
||||
return eventReference.Guid != nullGuid;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -5,7 +5,7 @@
|
||||
<value>DoorsOpening</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{10599e26-82f2-47e5-9e3a-1b7ceae11d41}</destination>
|
||||
@@ -80,7 +80,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{6925e198-c453-441b-9a20-594a915c7382}">
|
||||
<property name="volume">
|
||||
<value>2</value>
|
||||
<value>4.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{499c1cf8-b684-43c2-a0e6-0ee70e8a74e5}</destination>
|
||||
@@ -113,7 +113,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{0370e71d-b4b3-4334-be42-8f71e7d8f891}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>3.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -131,8 +131,8 @@
|
||||
<object class="MixerBusEffectChain" id="{499c1cf8-b684-43c2-a0e6-0ee70e8a74e5}">
|
||||
<relationship name="effects">
|
||||
<destination>{6faea210-6180-4aa6-bd82-a62e6ce7f5f5}</destination>
|
||||
<destination>{7afaf50a-8eb6-49a0-8fe3-b4fab99d4235}</destination>
|
||||
<destination>{7762a34b-50a8-41bf-8f29-7d8c7e43bc35}</destination>
|
||||
<destination>{e999917f-4a12-4150-96c7-d5ec8a4e4dba}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{9e99ce9b-b9a0-4f12-b982-f4de76284b8c}" />
|
||||
@@ -167,7 +167,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{852a5293-eb73-4089-b780-fb5ee78234db}" />
|
||||
<object class="MixerBusFader" id="{6faea210-6180-4aa6-bd82-a62e6ce7f5f5}" />
|
||||
<object class="SpatialiserEffect" id="{7afaf50a-8eb6-49a0-8fe3-b4fab99d4235}" />
|
||||
<object class="MultibandEqEffect" id="{7762a34b-50a8-41bf-8f29-7d8c7e43bc35}">
|
||||
<property name="filterTypeA">
|
||||
<value>9</value>
|
||||
@@ -212,6 +211,11 @@
|
||||
<value>-4.32751083</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{e999917f-4a12-4150-96c7-d5ec8a4e4dba}">
|
||||
<relationship name="plugin">
|
||||
<destination>{b568dd9f-46c7-47f1-b893-947570d5c74d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{71d39c29-652d-42fa-80ac-8846f5ff4bb3}">
|
||||
<property name="position">
|
||||
<value>3.5</value>
|
||||
@@ -232,4 +236,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{0a090fdf-f29b-4f7f-9832-e92a3e74d475}" />
|
||||
<object class="Plugin" id="{b568dd9f-46c7-47f1-b893-947570d5c74d}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{e0cb3588-9118-400a-b111-f0729650a440}</destination>
|
||||
<destination>{8ff40ea5-b770-4f36-bec9-bccd6f740412}</destination>
|
||||
<destination>{48d3d464-f916-4541-99ed-14d25cabbce1}</destination>
|
||||
<destination>{543f7eb8-8598-4e5d-8a73-6b5457f9c33f}</destination>
|
||||
<destination>{d0a209a9-9730-433f-97d8-d5258119fad2}</destination>
|
||||
<destination>{f07a5516-26d3-4281-957e-5440b9f6b3a4}</destination>
|
||||
<destination>{9ef33658-94bc-4708-9663-0c3821cd67c7}</destination>
|
||||
<destination>{6ff2d421-7f27-40a5-b8c9-d456ae350a58}</destination>
|
||||
<destination>{9024c426-22dd-4b85-a1c7-25b1e4b2705c}</destination>
|
||||
<destination>{2c99976b-280c-4bec-b7b5-afc591b82835}</destination>
|
||||
<destination>{12dcef0e-9f01-45d6-8efb-7e1cd7657e11}</destination>
|
||||
<destination>{f271f26e-5f0b-4c71-8674-08be0cfb691c}</destination>
|
||||
<destination>{4241a7d5-48a4-4bc0-a89b-7c9a3a2907a2}</destination>
|
||||
<destination>{ab61d75a-fae5-4180-868b-5d36326a4e15}</destination>
|
||||
<destination>{dbd94a24-bc5d-4287-9696-7627e4e1573c}</destination>
|
||||
<destination>{bb15e392-dfeb-4367-8141-18c855754d22}</destination>
|
||||
<destination>{ec7e2a0c-af68-47c2-b519-3b68e656ba28}</destination>
|
||||
<destination>{0de39a28-30bb-4646-bbc1-8153e95fce17}</destination>
|
||||
<destination>{e7a4369b-bbeb-49e2-8cb1-aff891ed9cc0}</destination>
|
||||
<destination>{b37160ed-b82e-459f-b4ea-2db9c8194a7b}</destination>
|
||||
<destination>{d463a644-23b1-4494-acbe-2dd39a268bef}</destination>
|
||||
<destination>{18b5e241-dcf6-439a-8485-2e3813508f12}</destination>
|
||||
<destination>{779ee5b7-8261-4154-86f3-a64c2e83fa23}</destination>
|
||||
<destination>{414617d6-4939-4307-98da-ac9dc1891342}</destination>
|
||||
<destination>{9fca106d-de90-4f11-867a-2c72d4daecbf}</destination>
|
||||
<destination>{57e12d4e-a2d1-4f57-85cb-3414e0b72ccb}</destination>
|
||||
<destination>{cf0aecbd-d647-4397-bd70-d9626282b682}</destination>
|
||||
<destination>{7e92f7ee-491d-40a1-8f2a-52c98b4bcc43}</destination>
|
||||
<destination>{3cd1d710-853c-47be-9346-47a5cfc6f58a}</destination>
|
||||
<destination>{528f1fcc-fcd2-460d-939d-cf9feca3d797}</destination>
|
||||
<destination>{aee17b12-a6fd-43a6-917f-cbfaf52b7c2a}</destination>
|
||||
<destination>{c39e5f61-d6c5-4c91-a198-5bea29377966}</destination>
|
||||
<destination>{eef28c68-c9f9-48a4-995d-c12665df03d1}</destination>
|
||||
<destination>{eff11cbe-3f33-41f0-9c4c-a9bb4f36fe25}</destination>
|
||||
<destination>{f5233e75-2d28-4058-be27-d50932b695bb}</destination>
|
||||
<destination>{c5b33e58-c8ef-4417-8c11-10a96a49ce87}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e0cb3588-9118-400a-b111-f0729650a440}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{8ff40ea5-b770-4f36-bec9-bccd6f740412}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{48d3d464-f916-4541-99ed-14d25cabbce1}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{543f7eb8-8598-4e5d-8a73-6b5457f9c33f}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d0a209a9-9730-433f-97d8-d5258119fad2}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f07a5516-26d3-4281-957e-5440b9f6b3a4}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9ef33658-94bc-4708-9663-0c3821cd67c7}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{6ff2d421-7f27-40a5-b8c9-d456ae350a58}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{9024c426-22dd-4b85-a1c7-25b1e4b2705c}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2c99976b-280c-4bec-b7b5-afc591b82835}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{12dcef0e-9f01-45d6-8efb-7e1cd7657e11}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f271f26e-5f0b-4c71-8674-08be0cfb691c}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4241a7d5-48a4-4bc0-a89b-7c9a3a2907a2}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>3.79999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ab61d75a-fae5-4180-868b-5d36326a4e15}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>9.19999981</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dbd94a24-bc5d-4287-9696-7627e4e1573c}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{bb15e392-dfeb-4367-8141-18c855754d22}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ec7e2a0c-af68-47c2-b519-3b68e656ba28}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0de39a28-30bb-4646-bbc1-8153e95fce17}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e7a4369b-bbeb-49e2-8cb1-aff891ed9cc0}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.204999998</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b37160ed-b82e-459f-b4ea-2db9c8194a7b}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d463a644-23b1-4494-acbe-2dd39a268bef}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{18b5e241-dcf6-439a-8485-2e3813508f12}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{779ee5b7-8261-4154-86f3-a64c2e83fa23}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{414617d6-4939-4307-98da-ac9dc1891342}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9fca106d-de90-4f11-867a-2c72d4daecbf}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{57e12d4e-a2d1-4f57-85cb-3414e0b72ccb}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{cf0aecbd-d647-4397-bd70-d9626282b682}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7e92f7ee-491d-40a1-8f2a-52c98b4bcc43}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3cd1d710-853c-47be-9346-47a5cfc6f58a}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{528f1fcc-fcd2-460d-939d-cf9feca3d797}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{aee17b12-a6fd-43a6-917f-cbfaf52b7c2a}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c39e5f61-d6c5-4c91-a198-5bea29377966}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{eef28c68-c9f9-48a4-995d-c12665df03d1}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{eff11cbe-3f33-41f0-9c4c-a9bb4f36fe25}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f5233e75-2d28-4058-be27-d50932b695bb}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c5b33e58-c8ef-4417-8c11-10a96a49ce87}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>MapOpen</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -112,7 +112,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{4d614ec5-157f-45a4-8157-3b3ae9d0fda2}">
|
||||
<property name="volume">
|
||||
<value>7</value>
|
||||
<value>8.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 4</value>
|
||||
@@ -130,7 +130,7 @@
|
||||
<object class="MixerBusEffectChain" id="{6d47dcd3-91f8-4b33-9345-17f2d69346d5}">
|
||||
<relationship name="effects">
|
||||
<destination>{3a75a981-d9aa-4727-9346-6fcd746e8141}</destination>
|
||||
<destination>{3deceeec-b708-412d-b7a8-adf69f6bf52d}</destination>
|
||||
<destination>{d9cae8ad-6ace-4f28-b111-6d193767e87b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{9ba267f9-303e-44f9-b2cd-a7f8371b1815}" />
|
||||
@@ -166,7 +166,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{00f2d5f1-c495-41e0-8470-7193bc34d5eb}" />
|
||||
<object class="MixerBusFader" id="{3a75a981-d9aa-4727-9346-6fcd746e8141}" />
|
||||
<object class="SpatialiserEffect" id="{3deceeec-b708-412d-b7a8-adf69f6bf52d}" />
|
||||
<object class="PluginEffect" id="{d9cae8ad-6ace-4f28-b111-6d193767e87b}">
|
||||
<relationship name="plugin">
|
||||
<destination>{f65e56ab-ea1a-4c5e-aca0-7c41d9d97e82}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{1d532358-4846-42a5-8fbf-b4c6ea766aef}">
|
||||
<property name="position">
|
||||
<value>0.38</value>
|
||||
@@ -187,4 +191,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{83b5a4c0-8dc7-4c6b-9bf8-f0e1350e772d}" />
|
||||
<object class="Plugin" id="{f65e56ab-ea1a-4c5e-aca0-7c41d9d97e82}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{955149d3-f69d-4e0e-897a-9fd203bd79c5}</destination>
|
||||
<destination>{43e49c72-336b-4637-8cf5-647b170a9902}</destination>
|
||||
<destination>{a551c38f-2295-4a10-9161-cbde675487bb}</destination>
|
||||
<destination>{9d1a70cd-f2fe-46d5-a892-fb224df7c788}</destination>
|
||||
<destination>{c2c2e09b-3505-4d6c-9b35-892fb09982a3}</destination>
|
||||
<destination>{6da7cbf0-43b8-45aa-89b7-a26b4f3db4e4}</destination>
|
||||
<destination>{d1886cbd-69f1-4a69-a5ee-66a712fa58e9}</destination>
|
||||
<destination>{e027f8e5-991a-4450-bdf7-f34fa21262d6}</destination>
|
||||
<destination>{0dfbcaf6-d484-43cf-92d1-18cdc6e115fa}</destination>
|
||||
<destination>{7318f4b2-3f6e-4761-a105-07a8326e3fd5}</destination>
|
||||
<destination>{1f45352e-2b65-43a7-8683-31066a78e0f3}</destination>
|
||||
<destination>{5b83e05c-3efc-4e45-821f-7cb5f444b1c3}</destination>
|
||||
<destination>{1e95bd86-01a8-46ec-8625-436853b86a5e}</destination>
|
||||
<destination>{f2482242-2e88-4000-a662-b1e53560e7aa}</destination>
|
||||
<destination>{a5449fab-ebbf-4ff8-b583-ced81e20dc2e}</destination>
|
||||
<destination>{214ff08e-321f-4aec-8413-d32f6e16bd67}</destination>
|
||||
<destination>{b0eff563-d1ad-4736-a2f3-f6d2e6931d31}</destination>
|
||||
<destination>{9160173f-3753-4d27-bad9-483f71ed0a78}</destination>
|
||||
<destination>{461fd5ec-228e-44d3-bbcb-f41ba6bdb0bd}</destination>
|
||||
<destination>{0331794c-f944-43f0-82bf-e2cea81816d9}</destination>
|
||||
<destination>{7679e7e4-ef8c-4810-9ecb-6de095bd8436}</destination>
|
||||
<destination>{fcb986ee-59ad-41fc-93b8-de65f8a03838}</destination>
|
||||
<destination>{49f25ec4-26d6-4b51-8e38-c66368ccfbcc}</destination>
|
||||
<destination>{25937770-c3ac-4f6a-b9ba-f75e49333e7e}</destination>
|
||||
<destination>{e51db30d-b505-4dad-b2fc-f31e9b02c1c2}</destination>
|
||||
<destination>{febf8315-c34c-4ad3-b7f5-2cd742b713e6}</destination>
|
||||
<destination>{3f2de9f7-136e-4a4b-a812-c4bf1b2f2c84}</destination>
|
||||
<destination>{3a30ee01-5b5f-483a-94fa-5d8f8c5e46b7}</destination>
|
||||
<destination>{dd92e396-89ab-4390-a294-a5257e30ac77}</destination>
|
||||
<destination>{018e4cf2-4c4e-440c-8dca-8e5f618517c4}</destination>
|
||||
<destination>{13f4c2b2-46c3-4eca-b6b1-e61bec01096c}</destination>
|
||||
<destination>{22b7568f-08de-450d-ac65-0a763656d45a}</destination>
|
||||
<destination>{2daa7a32-ad94-4778-95c5-d5793dcf0aec}</destination>
|
||||
<destination>{912ce080-aa7e-4ec9-868b-8295ffab9490}</destination>
|
||||
<destination>{bd6a2792-ab1c-4618-bcac-c2d23df4447c}</destination>
|
||||
<destination>{4c535d20-1e81-4a25-9a5a-24eb5d1c2866}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{955149d3-f69d-4e0e-897a-9fd203bd79c5}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{43e49c72-336b-4637-8cf5-647b170a9902}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a551c38f-2295-4a10-9161-cbde675487bb}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9d1a70cd-f2fe-46d5-a892-fb224df7c788}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c2c2e09b-3505-4d6c-9b35-892fb09982a3}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6da7cbf0-43b8-45aa-89b7-a26b4f3db4e4}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d1886cbd-69f1-4a69-a5ee-66a712fa58e9}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e027f8e5-991a-4450-bdf7-f34fa21262d6}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0dfbcaf6-d484-43cf-92d1-18cdc6e115fa}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{7318f4b2-3f6e-4761-a105-07a8326e3fd5}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1f45352e-2b65-43a7-8683-31066a78e0f3}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5b83e05c-3efc-4e45-821f-7cb5f444b1c3}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1e95bd86-01a8-46ec-8625-436853b86a5e}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f2482242-2e88-4000-a662-b1e53560e7aa}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a5449fab-ebbf-4ff8-b583-ced81e20dc2e}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{214ff08e-321f-4aec-8413-d32f6e16bd67}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b0eff563-d1ad-4736-a2f3-f6d2e6931d31}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9160173f-3753-4d27-bad9-483f71ed0a78}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{461fd5ec-228e-44d3-bbcb-f41ba6bdb0bd}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.74000001</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0331794c-f944-43f0-82bf-e2cea81816d9}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7679e7e4-ef8c-4810-9ecb-6de095bd8436}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fcb986ee-59ad-41fc-93b8-de65f8a03838}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{49f25ec4-26d6-4b51-8e38-c66368ccfbcc}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{25937770-c3ac-4f6a-b9ba-f75e49333e7e}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e51db30d-b505-4dad-b2fc-f31e9b02c1c2}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{febf8315-c34c-4ad3-b7f5-2cd742b713e6}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3f2de9f7-136e-4a4b-a812-c4bf1b2f2c84}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3a30ee01-5b5f-483a-94fa-5d8f8c5e46b7}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{dd92e396-89ab-4390-a294-a5257e30ac77}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{018e4cf2-4c4e-440c-8dca-8e5f618517c4}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{13f4c2b2-46c3-4eca-b6b1-e61bec01096c}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{22b7568f-08de-450d-ac65-0a763656d45a}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{2daa7a32-ad94-4778-95c5-d5793dcf0aec}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{912ce080-aa7e-4ec9-868b-8295ffab9490}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{bd6a2792-ab1c-4618-bcac-c2d23df4447c}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{4c535d20-1e81-4a25-9a5a-24eb5d1c2866}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>SprayerTake</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{ddc32c09-2c24-49ac-ad42-6ad835514fc4}</destination>
|
||||
@@ -124,7 +124,7 @@
|
||||
<object class="MixerBusEffectChain" id="{ef8f5caa-0a3e-4a16-b1fb-a5c50a65ad00}">
|
||||
<relationship name="effects">
|
||||
<destination>{4b42c05f-fb1a-4f63-848e-7db6e70b0bac}</destination>
|
||||
<destination>{f6eec2f7-3c1a-4f3a-aa57-43fa75c6ab5a}</destination>
|
||||
<destination>{4cc54e17-6e23-47ef-ba63-93761eae1eb2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{6a8793c7-9233-4fe1-8438-08805c948ece}" />
|
||||
@@ -179,7 +179,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{7bb06045-4671-4463-821e-595efb4e3ec0}" />
|
||||
<object class="MixerBusFader" id="{4b42c05f-fb1a-4f63-848e-7db6e70b0bac}" />
|
||||
<object class="SpatialiserEffect" id="{f6eec2f7-3c1a-4f3a-aa57-43fa75c6ab5a}" />
|
||||
<object class="PluginEffect" id="{4cc54e17-6e23-47ef-ba63-93761eae1eb2}">
|
||||
<relationship name="plugin">
|
||||
<destination>{c3425bdc-832f-4ca1-999a-057db13fbac8}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{409bec61-4a6d-4554-adb5-25a750c5c661}">
|
||||
<property name="position">
|
||||
<value>0.32000000000000001</value>
|
||||
@@ -200,4 +204,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{fae61936-c523-4c9a-b87d-5c1e41a2ccd9}" />
|
||||
<object class="Plugin" id="{c3425bdc-832f-4ca1-999a-057db13fbac8}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{576164ab-35f9-4bbb-ab3b-54c7368d7740}</destination>
|
||||
<destination>{2666df11-98ce-42f1-af54-d6d978317121}</destination>
|
||||
<destination>{a29e92ff-53e8-4208-ac71-91e88e2cc574}</destination>
|
||||
<destination>{931a6b54-6b6d-4b5d-9483-f89a94a8f684}</destination>
|
||||
<destination>{cb718848-d5e9-40a0-b2d8-2aa25b3fe323}</destination>
|
||||
<destination>{3310adfa-9bf3-43cf-9eac-f9505f112754}</destination>
|
||||
<destination>{03ac5897-8251-4a81-8e90-64cd9e4bb2fd}</destination>
|
||||
<destination>{8b0cfaa6-edab-4dc6-8f9f-c2cfb39d39d0}</destination>
|
||||
<destination>{f9af7aa2-2bc7-431c-97c6-5cbd2d02d071}</destination>
|
||||
<destination>{26c80a4b-0c0b-45c0-bbdb-312fc033dcfc}</destination>
|
||||
<destination>{1ecb3207-ee45-450b-8ad9-092de9293e4e}</destination>
|
||||
<destination>{fa4d8977-8ea5-455e-847d-2191c79a43cf}</destination>
|
||||
<destination>{d05b7bd0-9a45-4ff6-bc59-2912f7b9df9a}</destination>
|
||||
<destination>{cbd3f3b8-ea4c-45c2-bfd3-705dc10811c8}</destination>
|
||||
<destination>{2b8bc7e3-3a43-4fc5-a249-714e05b6aca2}</destination>
|
||||
<destination>{c6f2fd31-d57f-4257-a0ae-5033d61808ab}</destination>
|
||||
<destination>{6b6665d5-2ebf-4b38-85aa-097bd7ff17fe}</destination>
|
||||
<destination>{0785a259-d1c1-4d8b-8add-7ebc17a34fef}</destination>
|
||||
<destination>{3da83027-f4ed-4b3d-bc43-c0b8ce519318}</destination>
|
||||
<destination>{852af80d-18ff-4f1a-ba83-d29ec0bb4235}</destination>
|
||||
<destination>{b7ce624d-ecdc-45cc-a3d0-57192d1d8247}</destination>
|
||||
<destination>{36c44bb6-4903-4390-8da6-8793ecd2125e}</destination>
|
||||
<destination>{e4ffed27-b607-4dd6-9156-9cf92e06bf0b}</destination>
|
||||
<destination>{438a75d9-e723-4813-b5db-62247d0adb99}</destination>
|
||||
<destination>{13499a7c-f770-40cb-8822-ce04a142182e}</destination>
|
||||
<destination>{0c103e4e-b864-4978-a014-0539ac5acedf}</destination>
|
||||
<destination>{b81dd834-cf7d-4e63-a2aa-ed68e94e0b62}</destination>
|
||||
<destination>{d481eee0-7b21-4b40-86c9-efdbe15691b6}</destination>
|
||||
<destination>{fde00ebc-6035-4449-b796-4e85a07f63f8}</destination>
|
||||
<destination>{e5fa2510-2311-4dbd-8aaf-43c87e2a531f}</destination>
|
||||
<destination>{33b746df-817e-4a8f-a828-f54d72f49778}</destination>
|
||||
<destination>{ae814da1-5cc0-4fd4-8ce8-34355ea42124}</destination>
|
||||
<destination>{da1d9310-8a22-4421-8cad-ee533053b1b4}</destination>
|
||||
<destination>{b3de5795-8867-48ba-a822-1e267ef4c204}</destination>
|
||||
<destination>{9e3b0382-40b1-4196-81da-598577a915a1}</destination>
|
||||
<destination>{0b534016-8c95-4928-a3aa-0623543fd95c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{576164ab-35f9-4bbb-ab3b-54c7368d7740}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{2666df11-98ce-42f1-af54-d6d978317121}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a29e92ff-53e8-4208-ac71-91e88e2cc574}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{931a6b54-6b6d-4b5d-9483-f89a94a8f684}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{cb718848-d5e9-40a0-b2d8-2aa25b3fe323}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3310adfa-9bf3-43cf-9eac-f9505f112754}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{03ac5897-8251-4a81-8e90-64cd9e4bb2fd}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8b0cfaa6-edab-4dc6-8f9f-c2cfb39d39d0}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f9af7aa2-2bc7-431c-97c6-5cbd2d02d071}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{26c80a4b-0c0b-45c0-bbdb-312fc033dcfc}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1ecb3207-ee45-450b-8ad9-092de9293e4e}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fa4d8977-8ea5-455e-847d-2191c79a43cf}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d05b7bd0-9a45-4ff6-bc59-2912f7b9df9a}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cbd3f3b8-ea4c-45c2-bfd3-705dc10811c8}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2b8bc7e3-3a43-4fc5-a249-714e05b6aca2}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c6f2fd31-d57f-4257-a0ae-5033d61808ab}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6b6665d5-2ebf-4b38-85aa-097bd7ff17fe}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0785a259-d1c1-4d8b-8add-7ebc17a34fef}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3da83027-f4ed-4b3d-bc43-c0b8ce519318}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.794999957</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{852af80d-18ff-4f1a-ba83-d29ec0bb4235}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b7ce624d-ecdc-45cc-a3d0-57192d1d8247}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{36c44bb6-4903-4390-8da6-8793ecd2125e}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e4ffed27-b607-4dd6-9156-9cf92e06bf0b}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{438a75d9-e723-4813-b5db-62247d0adb99}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{13499a7c-f770-40cb-8822-ce04a142182e}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0c103e4e-b864-4978-a014-0539ac5acedf}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{b81dd834-cf7d-4e63-a2aa-ed68e94e0b62}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d481eee0-7b21-4b40-86c9-efdbe15691b6}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{fde00ebc-6035-4449-b796-4e85a07f63f8}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e5fa2510-2311-4dbd-8aaf-43c87e2a531f}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{33b746df-817e-4a8f-a828-f54d72f49778}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ae814da1-5cc0-4fd4-8ce8-34355ea42124}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{da1d9310-8a22-4421-8cad-ee533053b1b4}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b3de5795-8867-48ba-a822-1e267ef4c204}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9e3b0382-40b1-4196-81da-598577a915a1}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0b534016-8c95-4928-a3aa-0623543fd95c}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>PortalSpacial</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{e5bf65ee-d6e7-4aa2-8f58-f527d31905fa}</destination>
|
||||
@@ -68,8 +68,11 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{c76e816d-57c8-456c-a329-17eb0603d09f}">
|
||||
<property name="minimumDistance">
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>35</value>
|
||||
<value>50</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{59eaef25-4ee8-45f7-92cb-43f884ffe19f}" />
|
||||
@@ -165,7 +168,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{d606328d-d47d-42d7-8be4-de72450a50d8}">
|
||||
<property name="volume">
|
||||
<value>-3</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -207,8 +210,8 @@
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{fea1caca-e5b2-4e66-bd5e-33264c5623f8}">
|
||||
<relationship name="effects">
|
||||
<destination>{1fa0b00b-9ea4-4d5e-9800-9d8b13331627}</destination>
|
||||
<destination>{018473e4-0f0a-45f3-bcda-c733c71ad55e}</destination>
|
||||
<destination>{a14fd543-4bfd-4762-b7bf-eb0826291ed8}</destination>
|
||||
<destination>{1b59e476-ff30-46fa-be6f-43a65cbf5b64}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
@@ -263,8 +266,12 @@
|
||||
<destination>{50c8ed2a-a7f5-474d-bb5e-242ed4771c16}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="SpatialiserEffect" id="{1fa0b00b-9ea4-4d5e-9800-9d8b13331627}" />
|
||||
<object class="MixerBusFader" id="{018473e4-0f0a-45f3-bcda-c733c71ad55e}" />
|
||||
<object class="PluginEffect" id="{a14fd543-4bfd-4762-b7bf-eb0826291ed8}">
|
||||
<relationship name="plugin">
|
||||
<destination>{9feee028-da49-4c2f-9018-226dcf0f0bc2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MultibandEqEffect" id="{1b59e476-ff30-46fa-be6f-43a65cbf5b64}">
|
||||
<property name="frequencyA">
|
||||
<value>19834.9668</value>
|
||||
@@ -339,6 +346,49 @@
|
||||
<value>-3.46837234</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{9feee028-da49-4c2f-9018-226dcf0f0bc2}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{6b8b3048-eda3-4004-a918-5ad330e6ee05}</destination>
|
||||
<destination>{0d363eda-bfa3-4716-889a-e191f19c0ed3}</destination>
|
||||
<destination>{f0c1eda7-d48a-4757-b121-d1dc7bde37d1}</destination>
|
||||
<destination>{567b2353-1d22-4aa7-b4a7-cc4e468570cf}</destination>
|
||||
<destination>{fb5736a8-7cd3-4539-b100-8420082b749d}</destination>
|
||||
<destination>{24d15f14-ff33-43a3-820f-37376be9bb31}</destination>
|
||||
<destination>{a635946d-2a9e-4390-b066-85ac77efef1e}</destination>
|
||||
<destination>{a7a622fe-d7f6-4fb1-bdd0-a01921dfe1ec}</destination>
|
||||
<destination>{96e694f8-150c-4aea-a890-308e32f4e4e7}</destination>
|
||||
<destination>{ddf78326-b2b4-4734-8106-ef0713ef280e}</destination>
|
||||
<destination>{b452ef77-50cb-4cb7-a0b7-289862e13cb5}</destination>
|
||||
<destination>{3c503442-a2d8-4656-a4db-d7075f2956b6}</destination>
|
||||
<destination>{dc8c0cc0-385f-47b5-8312-42293e4ebfcb}</destination>
|
||||
<destination>{b1c26fc0-d105-4778-a8e5-5a911368793b}</destination>
|
||||
<destination>{f9fe655d-2317-4af9-b41c-96d11710e026}</destination>
|
||||
<destination>{d1991058-b179-4090-bd21-67c240c2b9c2}</destination>
|
||||
<destination>{3be3cd60-e7a4-48cb-b528-920dd027faad}</destination>
|
||||
<destination>{4ab27398-6f20-4360-9dc7-14fe61c867ef}</destination>
|
||||
<destination>{67d22545-fe46-4514-a77b-bf4659c1f0b1}</destination>
|
||||
<destination>{aa818a1b-4529-40c4-af52-f380c3bca72e}</destination>
|
||||
<destination>{8d27b3ce-ea3b-4d2a-ac3e-ab45697bd273}</destination>
|
||||
<destination>{e55daa42-028c-4343-8cc3-62edbb781632}</destination>
|
||||
<destination>{e0137506-aa43-4ac3-bb65-66daf1a93a31}</destination>
|
||||
<destination>{51dbab34-8291-42f1-bed3-bd122722e4f4}</destination>
|
||||
<destination>{976a3b3e-bfee-4a7b-84a5-5bc67c3f6029}</destination>
|
||||
<destination>{68b5694c-fc1c-4c28-8d7f-b901382302df}</destination>
|
||||
<destination>{512f57e3-acf0-4f10-aa77-f449853fbcd7}</destination>
|
||||
<destination>{d5ba991c-e2a1-435c-90eb-093664d20e99}</destination>
|
||||
<destination>{5acafe58-b5b4-46ac-831f-3c11247682f5}</destination>
|
||||
<destination>{fd0d3662-6135-43e6-a62a-21c279d191c0}</destination>
|
||||
<destination>{413ef1c8-f7db-4ed8-9e0c-381d1046480d}</destination>
|
||||
<destination>{7b365dfd-dd36-4c2d-912b-dec857a2c02f}</destination>
|
||||
<destination>{b80568db-515c-4d87-8bd9-9a34f271862e}</destination>
|
||||
<destination>{c9157f19-92a4-4850-a36c-8d56bf05855a}</destination>
|
||||
<destination>{b27f5181-6098-4744-a96c-a1bc373792c8}</destination>
|
||||
<destination>{0a741906-d807-4c26-a54e-d0da101749fe}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Automator" id="{f24ecb42-679a-4dd2-9d99-fd6d472bd1ef}">
|
||||
<property name="nameOfPropertyBeingAutomated">
|
||||
<value>frequencyA</value>
|
||||
@@ -347,6 +397,406 @@
|
||||
<destination>{789ce553-d213-4652-8f66-d3b6138b3699}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{6b8b3048-eda3-4004-a918-5ad330e6ee05}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{0d363eda-bfa3-4716-889a-e191f19c0ed3}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f0c1eda7-d48a-4757-b121-d1dc7bde37d1}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{567b2353-1d22-4aa7-b4a7-cc4e468570cf}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fb5736a8-7cd3-4539-b100-8420082b749d}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{24d15f14-ff33-43a3-820f-37376be9bb31}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a635946d-2a9e-4390-b066-85ac77efef1e}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{a7a622fe-d7f6-4fb1-bdd0-a01921dfe1ec}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{96e694f8-150c-4aea-a890-308e32f4e4e7}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ddf78326-b2b4-4734-8106-ef0713ef280e}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b452ef77-50cb-4cb7-a0b7-289862e13cb5}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3c503442-a2d8-4656-a4db-d7075f2956b6}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dc8c0cc0-385f-47b5-8312-42293e4ebfcb}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b1c26fc0-d105-4778-a8e5-5a911368793b}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>50</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f9fe655d-2317-4af9-b41c-96d11710e026}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d1991058-b179-4090-bd21-67c240c2b9c2}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3be3cd60-e7a4-48cb-b528-920dd027faad}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4ab27398-6f20-4360-9dc7-14fe61c867ef}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{67d22545-fe46-4514-a77b-bf4659c1f0b1}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.899999976</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{aa818a1b-4529-40c4-af52-f380c3bca72e}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.57999992</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8d27b3ce-ea3b-4d2a-ac3e-ab45697bd273}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e55daa42-028c-4343-8cc3-62edbb781632}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e0137506-aa43-4ac3-bb65-66daf1a93a31}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{51dbab34-8291-42f1-bed3-bd122722e4f4}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{976a3b3e-bfee-4a7b-84a5-5bc67c3f6029}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{68b5694c-fc1c-4c28-8d7f-b901382302df}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{512f57e3-acf0-4f10-aa77-f449853fbcd7}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d5ba991c-e2a1-435c-90eb-093664d20e99}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5acafe58-b5b4-46ac-831f-3c11247682f5}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fd0d3662-6135-43e6-a62a-21c279d191c0}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{413ef1c8-f7db-4ed8-9e0c-381d1046480d}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{7b365dfd-dd36-4c2d-912b-dec857a2c02f}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{b80568db-515c-4d87-8bd9-9a34f271862e}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c9157f19-92a4-4850-a36c-8d56bf05855a}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b27f5181-6098-4744-a96c-a1bc373792c8}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0a741906-d807-4c26-a54e-d0da101749fe}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{789ce553-d213-4652-8f66-d3b6138b3699}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{afd280c9-fc29-49aa-b0ef-f6564fb930be}">
|
||||
<property name="volume">
|
||||
<value>6.5</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -177,8 +177,7 @@
|
||||
<relationship name="effects">
|
||||
<destination>{b032d296-cd7a-49f3-b779-c0bcdd41c785}</destination>
|
||||
<destination>{c3166e0e-4f7f-479c-b792-5187cf483ac1}</destination>
|
||||
<destination>{6167048b-2dad-4047-bcc6-cf12637bf007}</destination>
|
||||
<destination>{002eb550-06c0-4be6-a04a-f0700dbf746f}</destination>
|
||||
<destination>{1436cbc3-9295-4aa1-aa03-807aeed6553c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{4e5933fa-c1aa-4256-81e8-b6102aac74d2}" />
|
||||
@@ -219,13 +218,9 @@
|
||||
<destination>{13c29f0f-d7ad-4af2-bf22-c5468f594b34}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="SpatialiserEffect" id="{6167048b-2dad-4047-bcc6-cf12637bf007}" />
|
||||
<object class="PluginEffect" id="{002eb550-06c0-4be6-a04a-f0700dbf746f}">
|
||||
<property name="bypass">
|
||||
<value>true</value>
|
||||
</property>
|
||||
<object class="PluginEffect" id="{1436cbc3-9295-4aa1-aa03-807aeed6553c}">
|
||||
<relationship name="plugin">
|
||||
<destination>{942b2238-e463-4e25-ab5c-513f4933529d}</destination>
|
||||
<destination>{590adb18-b6ab-4a46-85f9-fed52c1f5eb7}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{d4d65417-f7c9-4677-8a62-7cd565efb4ec}" />
|
||||
@@ -242,7 +237,7 @@
|
||||
<value>0.0010893246187363835</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>5.50000381</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{f27b076f-98a5-4814-910f-514e8487ea24}">
|
||||
@@ -250,7 +245,7 @@
|
||||
<value>0.40087145969498916</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-9.00000381</value>
|
||||
<value>-4.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{800a894f-e705-4ce0-8fec-ad994657d780}">
|
||||
@@ -258,7 +253,7 @@
|
||||
<value>0.99891067538126377</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-19.0000038</value>
|
||||
<value>-14.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{00e4d139-30b1-4ddd-9e51-0378beb6a660}">
|
||||
@@ -266,7 +261,7 @@
|
||||
<value>0.19716775599128541</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>5.50000381</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Automator" id="{13c29f0f-d7ad-4af2-bf22-c5468f594b34}">
|
||||
@@ -277,47 +272,47 @@
|
||||
<destination>{65c8f93e-5edb-40cf-a416-4132ff5dd997}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{942b2238-e463-4e25-ab5c-513f4933529d}">
|
||||
<object class="Plugin" id="{590adb18-b6ab-4a46-85f9-fed52c1f5eb7}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{293624d7-97c8-42d7-82a7-f1cd18c6e62b}</destination>
|
||||
<destination>{ea31bd33-0ef9-4b90-abd8-107fafec35d1}</destination>
|
||||
<destination>{277f9588-f6bb-41b4-a152-2fe3ba92ea2d}</destination>
|
||||
<destination>{a4974dcd-9749-4a6d-8fac-3a69c833d433}</destination>
|
||||
<destination>{19673356-b019-4321-8e89-a3e50a5e447f}</destination>
|
||||
<destination>{ac90a2f0-118e-43af-9ceb-8160d2d4896e}</destination>
|
||||
<destination>{0cf9e3c6-24ed-4431-94f1-af3831da9ae2}</destination>
|
||||
<destination>{d803597f-2344-432f-906a-92f47999a7c4}</destination>
|
||||
<destination>{fb8fa939-121f-41e0-9228-e6819389dafe}</destination>
|
||||
<destination>{a50965a4-1ff6-4e06-894c-68ad90096ded}</destination>
|
||||
<destination>{de9f7fa9-fbc2-4b64-ac6e-fed09dc51e53}</destination>
|
||||
<destination>{38ba093b-fc01-4b44-ba23-84326a6ed40c}</destination>
|
||||
<destination>{9e5686d5-9808-4e81-bcd9-4a76608aef4a}</destination>
|
||||
<destination>{d43eaf37-1ae1-4bdc-96b3-f133d12b723f}</destination>
|
||||
<destination>{62584e2e-2f8b-411a-97d9-d39451eadd87}</destination>
|
||||
<destination>{b4ae4a15-95e3-4ede-99b1-16c4d3615a60}</destination>
|
||||
<destination>{44174e6a-f2c3-4290-a8f6-fd475c250fda}</destination>
|
||||
<destination>{a6e8670a-da4a-4309-87bf-f7f6f523e234}</destination>
|
||||
<destination>{236659f7-b57f-4b7f-be73-5c9dc75a95a5}</destination>
|
||||
<destination>{5f87fa16-9552-47e8-883d-34c7dd29e388}</destination>
|
||||
<destination>{80e518f3-f63d-4cca-aceb-f9edf835ecf5}</destination>
|
||||
<destination>{9c102233-6623-42ca-80e6-d03f09ae9744}</destination>
|
||||
<destination>{cb411241-ee2f-4133-8ad3-34aacafbcc2f}</destination>
|
||||
<destination>{ade8734a-9bfc-4f6c-be4f-234115c8f0cb}</destination>
|
||||
<destination>{43c448bb-a73b-4cf3-bc1b-38d3d0f9a1da}</destination>
|
||||
<destination>{6d95c24b-a459-4e94-a66d-e1eb8ae5427d}</destination>
|
||||
<destination>{3911a214-6ebc-40ee-82fc-9f1b4b34a284}</destination>
|
||||
<destination>{0c5650f9-1614-47ef-8494-0f6ba6258e7d}</destination>
|
||||
<destination>{7ac7f9db-787d-4126-9016-5dbe4ec73e5f}</destination>
|
||||
<destination>{fec34ed7-13dc-4f3b-809a-3cbc3fb14a89}</destination>
|
||||
<destination>{29f69b91-3a3f-46ad-8ac0-38ed851390ba}</destination>
|
||||
<destination>{8ce1e288-7d98-4221-990b-aa0031151d49}</destination>
|
||||
<destination>{d17fd89a-d489-4f3b-b9ef-ab60b80644b7}</destination>
|
||||
<destination>{8e894fcd-9f55-4e36-b380-1d0676247f96}</destination>
|
||||
<destination>{08c4480c-f911-44cf-a969-3f3518811d9b}</destination>
|
||||
<destination>{5411aa48-234a-4856-92ec-3bab6c16474d}</destination>
|
||||
<destination>{7f166fca-f690-4049-b9ea-ff17f96b1114}</destination>
|
||||
<destination>{27c9d866-c54d-4eb1-bc8c-602dfb90769c}</destination>
|
||||
<destination>{8a2b5ef6-2eb5-4507-9077-275fae8500f2}</destination>
|
||||
<destination>{9bbc8a67-3599-4d2b-96be-1c9bd796ed88}</destination>
|
||||
<destination>{e2cd337d-a692-442f-9354-b81470392426}</destination>
|
||||
<destination>{4142916b-d3df-4773-8f91-96cbe7c04644}</destination>
|
||||
<destination>{2bbbaae7-a0b3-4c14-960f-8059989e97b0}</destination>
|
||||
<destination>{5061eaec-06e3-4ec7-b0ba-2e7dba3e44bd}</destination>
|
||||
<destination>{00f36b77-6552-4712-89d4-85962c464f11}</destination>
|
||||
<destination>{c9b6e4d7-9cb1-4399-aa47-c6d3756f0eba}</destination>
|
||||
<destination>{6453528a-99af-48d5-84c8-2f47eae299a0}</destination>
|
||||
<destination>{b85d74a8-b72b-4227-9969-8668d8c23aa0}</destination>
|
||||
<destination>{ef3ed3fa-f823-4e2c-a9cd-2d557d11b5a8}</destination>
|
||||
<destination>{22fbe084-de20-422d-ab85-ef610a680065}</destination>
|
||||
<destination>{24218a86-2c84-4f2c-82b3-deb08d889a73}</destination>
|
||||
<destination>{93c4fa6b-d71f-44ba-a57a-a3fdf6c09d0a}</destination>
|
||||
<destination>{6637b4a3-881b-4471-a209-9f03107299db}</destination>
|
||||
<destination>{ac57f04f-edb6-4902-939a-bf950f3728c6}</destination>
|
||||
<destination>{094e4948-682b-4945-ba23-02f6aabb4eb8}</destination>
|
||||
<destination>{cbdb8701-a301-4bcb-8861-d18636358218}</destination>
|
||||
<destination>{968f448c-69a6-45c6-b32a-c5661ec39126}</destination>
|
||||
<destination>{661a8cf6-a666-4ad0-858c-09c471a61175}</destination>
|
||||
<destination>{37823f06-a1a8-4194-b92a-7204666ff080}</destination>
|
||||
<destination>{08567e5e-d089-4b38-a5d2-f222e91c1f63}</destination>
|
||||
<destination>{d6098a9d-d273-4ac9-b873-53267ffceb74}</destination>
|
||||
<destination>{825d8e9d-d148-4bfd-bf3d-2245183eab29}</destination>
|
||||
<destination>{e18c7374-5850-407a-a1c9-d9dc644cf2e1}</destination>
|
||||
<destination>{879487b9-4c9e-443c-a5bc-96ee839e5fa5}</destination>
|
||||
<destination>{05e8acb2-3dc6-46c2-b2fa-4b0d5eb8bb12}</destination>
|
||||
<destination>{f014e1b3-2ffb-4700-ae82-c4862d8ab590}</destination>
|
||||
<destination>{b7bff1b4-7050-41c4-a605-4eb646aa5ab5}</destination>
|
||||
<destination>{c4d803c4-c874-4534-bd1d-69787a6339fa}</destination>
|
||||
<destination>{18c4933c-5f83-44bc-9da6-da27114a9ba9}</destination>
|
||||
<destination>{aee90a02-10f6-470e-9680-da33fdc4df13}</destination>
|
||||
<destination>{82a435ff-9ee1-4966-8742-90545edf8946}</destination>
|
||||
<destination>{2c82bd93-aa59-4255-9b02-d8d1c9ca1904}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{65c8f93e-5edb-40cf-a416-4132ff5dd997}">
|
||||
@@ -332,23 +327,25 @@
|
||||
<destination>{39a64079-574e-4732-8782-0ffc044cbf8b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{293624d7-97c8-42d7-82a7-f1cd18c6e62b}">
|
||||
<object class="DataPluginParameter" id="{7f166fca-f690-4049-b9ea-ff17f96b1114}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ea31bd33-0ef9-4b90-abd8-107fafec35d1}">
|
||||
<object class="DataPluginParameter" id="{27c9d866-c54d-4eb1-bc8c-602dfb90769c}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{277f9588-f6bb-41b4-a152-2fe3ba92ea2d}">
|
||||
<object class="IntPluginParameter" id="{8a2b5ef6-2eb5-4507-9077-275fae8500f2}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
@@ -362,7 +359,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a4974dcd-9749-4a6d-8fac-3a69c833d433}">
|
||||
<object class="IntPluginParameter" id="{9bbc8a67-3599-4d2b-96be-1c9bd796ed88}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
@@ -376,7 +373,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{19673356-b019-4321-8e89-a3e50a5e447f}">
|
||||
<object class="IntPluginParameter" id="{e2cd337d-a692-442f-9354-b81470392426}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
@@ -390,7 +387,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ac90a2f0-118e-43af-9ceb-8160d2d4896e}">
|
||||
<object class="IntPluginParameter" id="{4142916b-d3df-4773-8f91-96cbe7c04644}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
@@ -404,7 +401,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0cf9e3c6-24ed-4431-94f1-af3831da9ae2}">
|
||||
<object class="IntPluginParameter" id="{2bbbaae7-a0b3-4c14-960f-8059989e97b0}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
@@ -418,7 +415,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d803597f-2344-432f-906a-92f47999a7c4}">
|
||||
<object class="BoolPluginParameter" id="{5061eaec-06e3-4ec7-b0ba-2e7dba3e44bd}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
@@ -426,20 +423,20 @@
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{fb8fa939-121f-41e0-9228-e6819389dafe}">
|
||||
<object class="BoolPluginParameter" id="{00f36b77-6552-4712-89d4-85962c464f11}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a50965a4-1ff6-4e06-894c-68ad90096ded}">
|
||||
<object class="IntPluginParameter" id="{c9b6e4d7-9cb1-4399-aa47-c6d3756f0eba}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -448,7 +445,7 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{de9f7fa9-fbc2-4b64-ac6e-fed09dc51e53}">
|
||||
<object class="FloatPluginParameter" id="{6453528a-99af-48d5-84c8-2f47eae299a0}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
@@ -459,12 +456,12 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{38ba093b-fc01-4b44-ba23-84326a6ed40c}">
|
||||
<object class="IntPluginParameter" id="{b85d74a8-b72b-4227-9969-8668d8c23aa0}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>3</value>
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -473,29 +470,29 @@
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9e5686d5-9808-4e81-bcd9-4a76608aef4a}">
|
||||
<object class="FloatPluginParameter" id="{ef3ed3fa-f823-4e2c-a9cd-2d557d11b5a8}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d43eaf37-1ae1-4bdc-96b3-f133d12b723f}">
|
||||
<object class="FloatPluginParameter" id="{22fbe084-de20-422d-ab85-ef610a680065}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
<value>7.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{62584e2e-2f8b-411a-97d9-d39451eadd87}">
|
||||
<object class="FloatPluginParameter" id="{24218a86-2c84-4f2c-82b3-deb08d889a73}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
@@ -506,7 +503,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b4ae4a15-95e3-4ede-99b1-16c4d3615a60}">
|
||||
<object class="FloatPluginParameter" id="{93c4fa6b-d71f-44ba-a57a-a3fdf6c09d0a}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
@@ -517,7 +514,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{44174e6a-f2c3-4290-a8f6-fd475c250fda}">
|
||||
<object class="FloatPluginParameter" id="{6637b4a3-881b-4471-a209-9f03107299db}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
@@ -528,7 +525,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a6e8670a-da4a-4309-87bf-f7f6f523e234}">
|
||||
<object class="FloatPluginParameter" id="{ac57f04f-edb6-4902-939a-bf950f3728c6}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
@@ -539,7 +536,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{236659f7-b57f-4b7f-be73-5c9dc75a95a5}">
|
||||
<object class="FloatPluginParameter" id="{094e4948-682b-4945-ba23-02f6aabb4eb8}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
@@ -550,18 +547,18 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5f87fa16-9552-47e8-883d-34c7dd29e388}">
|
||||
<object class="FloatPluginParameter" id="{cbdb8701-a301-4bcb-8861-d18636358218}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{80e518f3-f63d-4cca-aceb-f9edf835ecf5}">
|
||||
<object class="FloatPluginParameter" id="{968f448c-69a6-45c6-b32a-c5661ec39126}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
@@ -572,7 +569,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9c102233-6623-42ca-80e6-d03f09ae9744}">
|
||||
<object class="IntPluginParameter" id="{661a8cf6-a666-4ad0-858c-09c471a61175}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
@@ -586,7 +583,7 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cb411241-ee2f-4133-8ad3-34aacafbcc2f}">
|
||||
<object class="FloatPluginParameter" id="{37823f06-a1a8-4194-b92a-7204666ff080}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
@@ -597,7 +594,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ade8734a-9bfc-4f6c-be4f-234115c8f0cb}">
|
||||
<object class="FloatPluginParameter" id="{08567e5e-d089-4b38-a5d2-f222e91c1f63}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
@@ -608,7 +605,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{43c448bb-a73b-4cf3-bc1b-38d3d0f9a1da}">
|
||||
<object class="FloatPluginParameter" id="{d6098a9d-d273-4ac9-b873-53267ffceb74}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
@@ -619,7 +616,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6d95c24b-a459-4e94-a66d-e1eb8ae5427d}">
|
||||
<object class="FloatPluginParameter" id="{825d8e9d-d148-4bfd-bf3d-2245183eab29}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
@@ -630,7 +627,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3911a214-6ebc-40ee-82fc-9f1b4b34a284}">
|
||||
<object class="BoolPluginParameter" id="{e18c7374-5850-407a-a1c9-d9dc644cf2e1}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
@@ -638,7 +635,7 @@
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0c5650f9-1614-47ef-8494-0f6ba6258e7d}">
|
||||
<object class="FloatPluginParameter" id="{879487b9-4c9e-443c-a5bc-96ee839e5fa5}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
@@ -649,15 +646,15 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{7ac7f9db-787d-4126-9016-5dbe4ec73e5f}">
|
||||
<object class="BoolPluginParameter" id="{05e8acb2-3dc6-46c2-b2fa-4b0d5eb8bb12}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fec34ed7-13dc-4f3b-809a-3cbc3fb14a89}">
|
||||
<object class="FloatPluginParameter" id="{f014e1b3-2ffb-4700-ae82-c4862d8ab590}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
@@ -668,15 +665,16 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{29f69b91-3a3f-46ad-8ac0-38ed851390ba}">
|
||||
<object class="DataPluginParameter" id="{b7bff1b4-7050-41c4-a605-4eb646aa5ab5}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8ce1e288-7d98-4221-990b-aa0031151d49}">
|
||||
<object class="BoolPluginParameter" id="{c4d803c4-c874-4534-bd1d-69787a6339fa}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
@@ -684,15 +682,16 @@
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{d17fd89a-d489-4f3b-b9ef-ab60b80644b7}">
|
||||
<object class="DataPluginParameter" id="{18c4933c-5f83-44bc-9da6-da27114a9ba9}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8e894fcd-9f55-4e36-b380-1d0676247f96}">
|
||||
<object class="IntPluginParameter" id="{aee90a02-10f6-470e-9680-da33fdc4df13}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
@@ -706,7 +705,7 @@
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{08c4480c-f911-44cf-a969-3f3518811d9b}">
|
||||
<object class="IntPluginParameter" id="{82a435ff-9ee1-4966-8742-90545edf8946}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
@@ -720,7 +719,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5411aa48-234a-4856-92ec-3bab6c16474d}">
|
||||
<object class="BoolPluginParameter" id="{2c82bd93-aa59-4255-9b02-d8d1c9ca1904}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
|
||||
@@ -72,10 +72,10 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumDistance">
|
||||
<value>55</value>
|
||||
<value>2.20000005</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>80</value>
|
||||
<value>90</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{25ff9287-1371-4687-989c-3d2f2a0ae13a}" />
|
||||
@@ -104,7 +104,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{52b9f8cb-8226-41f0-b3b9-efb4865881d2}">
|
||||
<property name="overridingInputFormat">
|
||||
<value>3</value>
|
||||
<value>0</value>
|
||||
</property>
|
||||
<relationship name="automators">
|
||||
<destination>{1029957e-54dc-4f5d-9a92-dcbaa88424f6}</destination>
|
||||
@@ -174,7 +174,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{57a7f26c-f968-4628-ab12-b7590fef94ee}">
|
||||
<property name="volume">
|
||||
<value>4</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -217,7 +217,7 @@
|
||||
<object class="MixerBusEffectChain" id="{371397f9-0123-43a5-a07e-3bb241fddd6c}">
|
||||
<relationship name="effects">
|
||||
<destination>{c0ec98cf-5478-4926-8cbe-53725111fa06}</destination>
|
||||
<destination>{18444478-630c-480b-8954-c3dc986b6029}</destination>
|
||||
<destination>{276f6560-d104-46af-992b-a859d173ad8d}</destination>
|
||||
<destination>{c2bf834d-7ae6-4de6-8ef9-5bf74b851a31}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
@@ -273,7 +273,14 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{c0ec98cf-5478-4926-8cbe-53725111fa06}" />
|
||||
<object class="SpatialiserEffect" id="{18444478-630c-480b-8954-c3dc986b6029}" />
|
||||
<object class="SpatialiserEffect" id="{276f6560-d104-46af-992b-a859d173ad8d}">
|
||||
<property name="extentMode">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="soundSize">
|
||||
<value>300</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MultibandEqEffect" id="{c2bf834d-7ae6-4de6-8ef9-5bf74b851a31}">
|
||||
<property name="frequencyA">
|
||||
<value>22000</value>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>LetterHover</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -83,7 +83,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{c28d57a6-c63b-486f-88a3-35590b9dbc71}">
|
||||
<property name="volume">
|
||||
<value>4</value>
|
||||
<value>6.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{3889479a-2bd9-4db9-afbb-c3c8832cc76b}</destination>
|
||||
@@ -141,7 +141,7 @@
|
||||
<object class="MixerBusEffectChain" id="{3889479a-2bd9-4db9-afbb-c3c8832cc76b}">
|
||||
<relationship name="effects">
|
||||
<destination>{3e908b9e-bdb2-4a9b-bd24-58207256fe32}</destination>
|
||||
<destination>{e97bac2e-3937-4645-b855-64bbd099713d}</destination>
|
||||
<destination>{a79a854b-e9d1-4d11-ad58-27c7fc2fb4ee}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{900beb6e-b30e-4eb5-84d1-fc7ed1cbce62}" />
|
||||
@@ -162,7 +162,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{fed57411-2563-4f35-80b1-18112f5146b6}" />
|
||||
<object class="MixerBusFader" id="{3e908b9e-bdb2-4a9b-bd24-58207256fe32}" />
|
||||
<object class="SpatialiserEffect" id="{e97bac2e-3937-4645-b855-64bbd099713d}" />
|
||||
<object class="PluginEffect" id="{a79a854b-e9d1-4d11-ad58-27c7fc2fb4ee}">
|
||||
<relationship name="plugin">
|
||||
<destination>{40027809-4de0-405c-987e-9d34ef2660ca}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{31cb2a26-5f20-42ed-b59b-68fb2789183d}">
|
||||
<property name="position">
|
||||
<value>0.051500000000000004</value>
|
||||
@@ -197,4 +201,447 @@
|
||||
<value>3.47419739</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{40027809-4de0-405c-987e-9d34ef2660ca}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{b45f52a6-242a-4fc7-b403-b6375da30a6d}</destination>
|
||||
<destination>{d5328d9a-9bf6-46f0-8ba0-c388f8168f46}</destination>
|
||||
<destination>{d4249390-99eb-4a9b-9afa-b6d0bec95949}</destination>
|
||||
<destination>{3b964ee6-5480-4be1-a617-98b7d47452e9}</destination>
|
||||
<destination>{22c2a5cf-4587-445c-bbf8-c4b9e772d8dd}</destination>
|
||||
<destination>{f5344e92-19fb-4df7-9f89-c8bb73bb397e}</destination>
|
||||
<destination>{15111c16-adf6-409a-aaa4-508176f72ff1}</destination>
|
||||
<destination>{367b51a1-db98-4b33-8b48-1e904c5c9cb9}</destination>
|
||||
<destination>{6a27dbeb-11b7-4ed0-ac3e-b8ff8cb0eeb5}</destination>
|
||||
<destination>{a1c80fa4-8119-4b1f-ba9d-b13976ed76e6}</destination>
|
||||
<destination>{ac9cdba3-3694-424f-b448-539994a0e44c}</destination>
|
||||
<destination>{6070ffa4-1758-4c5c-8afb-56abdf533ae3}</destination>
|
||||
<destination>{c39dc536-2e81-4ece-a52c-cd352fa6e3f2}</destination>
|
||||
<destination>{8c163e77-224d-41cb-b106-81b6407ca63e}</destination>
|
||||
<destination>{5f43ba3d-36dc-448e-8ca2-214eb1679d73}</destination>
|
||||
<destination>{9dad33af-1259-4f2a-8c22-3d98a78170b7}</destination>
|
||||
<destination>{c6ca2b88-d949-40d3-b001-7cce22fec39f}</destination>
|
||||
<destination>{469d2e66-8df1-47d0-8e06-d6d584330cd5}</destination>
|
||||
<destination>{6765eeaa-be96-434a-ae43-0c91b30873d4}</destination>
|
||||
<destination>{6abf2a4d-f86e-46a2-b00e-8c06a8db4e67}</destination>
|
||||
<destination>{a8921a41-f888-4b61-bf6c-a9ee88fb79fe}</destination>
|
||||
<destination>{58404594-664f-4eee-9dff-4e0b7a91bda9}</destination>
|
||||
<destination>{2286ca44-77a6-41ed-b1a6-7fbd1cef748e}</destination>
|
||||
<destination>{0f7bafd3-959c-4a6c-bb34-02e0238dca98}</destination>
|
||||
<destination>{b7c2f158-47d3-43d8-a0da-b1826dc5db89}</destination>
|
||||
<destination>{e2903d7e-18e6-458d-b957-0584b60b14a0}</destination>
|
||||
<destination>{2f652685-01c2-45a0-a166-e701e941f3c8}</destination>
|
||||
<destination>{ca8469cf-0cac-40a4-b77c-8066d579d98f}</destination>
|
||||
<destination>{83cbffa8-22ec-4d2a-9251-55663aabf36a}</destination>
|
||||
<destination>{972d0c82-ad0c-4e25-81cc-3ba151cf28c8}</destination>
|
||||
<destination>{51d72366-7980-456d-a34f-b76451bc975f}</destination>
|
||||
<destination>{80f49152-e18e-403e-8db7-b9e9f8fb1c2d}</destination>
|
||||
<destination>{d2f2c59b-bda4-4a7d-8954-ad9de6b4c8fa}</destination>
|
||||
<destination>{56156fbe-0d05-4202-b4f8-7259bb0e5375}</destination>
|
||||
<destination>{8e0a2379-0151-48f5-8045-ee99e78ed2a5}</destination>
|
||||
<destination>{e3fdc946-793b-4794-8e3e-41ab22367341}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{b45f52a6-242a-4fc7-b403-b6375da30a6d}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{d5328d9a-9bf6-46f0-8ba0-c388f8168f46}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d4249390-99eb-4a9b-9afa-b6d0bec95949}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3b964ee6-5480-4be1-a617-98b7d47452e9}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{22c2a5cf-4587-445c-bbf8-c4b9e772d8dd}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f5344e92-19fb-4df7-9f89-c8bb73bb397e}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{15111c16-adf6-409a-aaa4-508176f72ff1}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{367b51a1-db98-4b33-8b48-1e904c5c9cb9}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{6a27dbeb-11b7-4ed0-ac3e-b8ff8cb0eeb5}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a1c80fa4-8119-4b1f-ba9d-b13976ed76e6}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ac9cdba3-3694-424f-b448-539994a0e44c}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6070ffa4-1758-4c5c-8afb-56abdf533ae3}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c39dc536-2e81-4ece-a52c-cd352fa6e3f2}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8c163e77-224d-41cb-b106-81b6407ca63e}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5f43ba3d-36dc-448e-8ca2-214eb1679d73}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9dad33af-1259-4f2a-8c22-3d98a78170b7}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c6ca2b88-d949-40d3-b001-7cce22fec39f}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{469d2e66-8df1-47d0-8e06-d6d584330cd5}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6765eeaa-be96-434a-ae43-0c91b30873d4}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.729999959</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6abf2a4d-f86e-46a2-b00e-8c06a8db4e67}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a8921a41-f888-4b61-bf6c-a9ee88fb79fe}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{58404594-664f-4eee-9dff-4e0b7a91bda9}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2286ca44-77a6-41ed-b1a6-7fbd1cef748e}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0f7bafd3-959c-4a6c-bb34-02e0238dca98}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b7c2f158-47d3-43d8-a0da-b1826dc5db89}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e2903d7e-18e6-458d-b957-0584b60b14a0}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{2f652685-01c2-45a0-a166-e701e941f3c8}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ca8469cf-0cac-40a4-b77c-8066d579d98f}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{83cbffa8-22ec-4d2a-9251-55663aabf36a}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{972d0c82-ad0c-4e25-81cc-3ba151cf28c8}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{51d72366-7980-456d-a34f-b76451bc975f}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{80f49152-e18e-403e-8db7-b9e9f8fb1c2d}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{d2f2c59b-bda4-4a7d-8954-ad9de6b4c8fa}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{56156fbe-0d05-4202-b4f8-7259bb0e5375}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8e0a2379-0151-48f5-8045-ee99e78ed2a5}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e3fdc946-793b-4794-8e3e-41ab22367341}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>UFODestroy</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
|
||||
@@ -58,10 +58,10 @@
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{9c0ae271-27f8-4329-a0af-abe75088ef22}">
|
||||
<property name="minimumDistance">
|
||||
<value>9.80000019</value>
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>85</value>
|
||||
<value>150</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{125996c3-1840-4b17-832d-c1554bd09e17}" />
|
||||
@@ -112,7 +112,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{8ccd816d-f005-4f8f-bbd7-52c6d431beb1}">
|
||||
<property name="volume">
|
||||
<value>8</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -130,7 +130,7 @@
|
||||
<object class="MixerBusEffectChain" id="{2a0ccd93-b76f-4138-9f00-33911649adb6}">
|
||||
<relationship name="effects">
|
||||
<destination>{cf3724f2-63e1-4a57-a07f-3a2bc71b9a21}</destination>
|
||||
<destination>{a8f8e027-877d-4411-aaf6-1d6d1476cfbc}</destination>
|
||||
<destination>{500af0c3-fb33-4b85-8fd5-dc33ae2efaa3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{e580a54f-c607-4eeb-9b4e-5dc286b18b25}" />
|
||||
@@ -188,7 +188,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{44d4d831-c60f-4908-a665-0a1fa097c510}" />
|
||||
<object class="MixerBusFader" id="{cf3724f2-63e1-4a57-a07f-3a2bc71b9a21}" />
|
||||
<object class="SpatialiserEffect" id="{a8f8e027-877d-4411-aaf6-1d6d1476cfbc}" />
|
||||
<object class="PluginEffect" id="{500af0c3-fb33-4b85-8fd5-dc33ae2efaa3}">
|
||||
<relationship name="plugin">
|
||||
<destination>{f9b9ebf1-34d7-48d0-959d-a2c908f0d668}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{c4ebe0a0-b406-40b0-bac4-f3e79a8b4c52}" />
|
||||
<object class="MultibandEqEffect" id="{115f0a05-a60d-4576-9d03-e0616e15e84f}">
|
||||
<property name="filterTypeA">
|
||||
@@ -204,4 +208,447 @@
|
||||
<value>3.10344815</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{f9b9ebf1-34d7-48d0-959d-a2c908f0d668}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{d884cb12-d37a-43de-a393-fb0f91de1f02}</destination>
|
||||
<destination>{e6af2d96-65be-4ee5-955e-89668d171e47}</destination>
|
||||
<destination>{3e1580d9-b896-42bf-bbb4-f86fb533b3d3}</destination>
|
||||
<destination>{9952180e-ec57-4b47-9538-318c477c6215}</destination>
|
||||
<destination>{ddc286d1-5349-4d09-92ee-7d4aced646b2}</destination>
|
||||
<destination>{acdfde55-3e2e-4d4b-b00f-37ba7ebd60e5}</destination>
|
||||
<destination>{e3ec56e9-70dd-430a-a065-8638f0ff6d35}</destination>
|
||||
<destination>{a659c17f-4b9f-4f5e-a89c-61bf68ea68d8}</destination>
|
||||
<destination>{65553e1f-13a0-4c78-be72-9601d472bfd3}</destination>
|
||||
<destination>{af926b4d-054c-4622-90cc-5a7a3e7a2a66}</destination>
|
||||
<destination>{07b88be4-7b4e-4f4c-ba75-9c25d8573fb1}</destination>
|
||||
<destination>{ac28b61b-3090-487b-ad4b-769d9bff3b05}</destination>
|
||||
<destination>{413e9925-f2de-4c30-9308-c8a47363ebe0}</destination>
|
||||
<destination>{fc61f600-3ca8-4460-9b85-d092fe11f8ed}</destination>
|
||||
<destination>{15155ce0-4c8d-45ae-94b7-adb20c11893a}</destination>
|
||||
<destination>{5368ff7a-a1cc-41af-97db-34ce07215522}</destination>
|
||||
<destination>{7c7cec95-c8ac-40d4-867c-48d3c2ec2274}</destination>
|
||||
<destination>{54731279-83f6-4c61-be40-a3ae4c3aaf2e}</destination>
|
||||
<destination>{29502605-95a3-48f2-9887-08eb521e31a5}</destination>
|
||||
<destination>{46a309de-4372-47ff-a4a2-cb0e13c3ad55}</destination>
|
||||
<destination>{fba1ceba-43ca-4188-bec6-808c992ee8cc}</destination>
|
||||
<destination>{a8cb48b6-fb7f-4742-a407-6a1899e66234}</destination>
|
||||
<destination>{afe3ed38-58c0-4542-8aa2-172216928491}</destination>
|
||||
<destination>{15b25787-8032-4605-8357-d04bc1e0088a}</destination>
|
||||
<destination>{391f3081-23fa-4781-a23e-4235b9eafdf5}</destination>
|
||||
<destination>{5f4cc4b2-3f97-4ba1-999a-8c2581f71555}</destination>
|
||||
<destination>{d615dabd-8905-497b-a8ee-1cdca14c852e}</destination>
|
||||
<destination>{05bddb73-47f6-4496-82a2-da38a0a982e2}</destination>
|
||||
<destination>{c6efe903-2a59-487d-be50-9aae826febe4}</destination>
|
||||
<destination>{50c0a965-86f6-4911-9f06-33f341fea2c9}</destination>
|
||||
<destination>{701b8fb9-59e3-47c5-a508-704d3a4078c4}</destination>
|
||||
<destination>{f53b3ae2-6ae6-47b8-9b5f-62b5e4a2365c}</destination>
|
||||
<destination>{c5c910ee-c259-473f-ab2b-9d04e5ad32db}</destination>
|
||||
<destination>{2935daeb-0141-4eb1-b62a-0c3f095eeb11}</destination>
|
||||
<destination>{ea43dcc1-caaa-4cac-8a89-9758a853a815}</destination>
|
||||
<destination>{811bc587-7afd-4608-acea-516c125c89d3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{d884cb12-d37a-43de-a393-fb0f91de1f02}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e6af2d96-65be-4ee5-955e-89668d171e47}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3e1580d9-b896-42bf-bbb4-f86fb533b3d3}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9952180e-ec57-4b47-9538-318c477c6215}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ddc286d1-5349-4d09-92ee-7d4aced646b2}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{acdfde55-3e2e-4d4b-b00f-37ba7ebd60e5}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e3ec56e9-70dd-430a-a065-8638f0ff6d35}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{a659c17f-4b9f-4f5e-a89c-61bf68ea68d8}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{65553e1f-13a0-4c78-be72-9601d472bfd3}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{af926b4d-054c-4622-90cc-5a7a3e7a2a66}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{07b88be4-7b4e-4f4c-ba75-9c25d8573fb1}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ac28b61b-3090-487b-ad4b-769d9bff3b05}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{413e9925-f2de-4c30-9308-c8a47363ebe0}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fc61f600-3ca8-4460-9b85-d092fe11f8ed}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>150</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{15155ce0-4c8d-45ae-94b7-adb20c11893a}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5368ff7a-a1cc-41af-97db-34ce07215522}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7c7cec95-c8ac-40d4-867c-48d3c2ec2274}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{54731279-83f6-4c61-be40-a3ae4c3aaf2e}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{29502605-95a3-48f2-9887-08eb521e31a5}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.114999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{46a309de-4372-47ff-a4a2-cb0e13c3ad55}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fba1ceba-43ca-4188-bec6-808c992ee8cc}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a8cb48b6-fb7f-4742-a407-6a1899e66234}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{afe3ed38-58c0-4542-8aa2-172216928491}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{15b25787-8032-4605-8357-d04bc1e0088a}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{391f3081-23fa-4781-a23e-4235b9eafdf5}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5f4cc4b2-3f97-4ba1-999a-8c2581f71555}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d615dabd-8905-497b-a8ee-1cdca14c852e}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{05bddb73-47f6-4496-82a2-da38a0a982e2}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c6efe903-2a59-487d-be50-9aae826febe4}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{50c0a965-86f6-4911-9f06-33f341fea2c9}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{701b8fb9-59e3-47c5-a508-704d3a4078c4}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f53b3ae2-6ae6-47b8-9b5f-62b5e4a2365c}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c5c910ee-c259-473f-ab2b-9d04e5ad32db}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2935daeb-0141-4eb1-b62a-0c3f095eeb11}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ea43dcc1-caaa-4cac-8a89-9758a853a815}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{811bc587-7afd-4608-acea-516c125c89d3}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ServerHum</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{5d87e2fb-50d7-435d-bcfa-207929c464ce}</destination>
|
||||
@@ -49,6 +49,7 @@
|
||||
<object class="MasterTrack" id="{53fe6597-f7d5-4812-85fe-dea94f393db7}">
|
||||
<relationship name="automationTracks">
|
||||
<destination>{235cb3d5-a87c-4733-b2d1-39fc2e731f3b}</destination>
|
||||
<destination>{93c5e52b-53f6-4f88-88dd-f8702d632356}</destination>
|
||||
</relationship>
|
||||
<relationship name="modules">
|
||||
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
|
||||
@@ -136,6 +137,9 @@
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
</property>
|
||||
<relationship name="automators">
|
||||
<destination>{90366133-a0ec-4f7e-bd9a-5f6bfa00fbb1}</destination>
|
||||
</relationship>
|
||||
<relationship name="effectChain">
|
||||
<destination>{f8c15184-15a1-4e9d-95b9-c95327204bfe}</destination>
|
||||
</relationship>
|
||||
@@ -151,6 +155,11 @@
|
||||
<destination>{df95b9af-05c2-4929-bd1c-d4ade15eaef5}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationTrack" id="{93c5e52b-53f6-4f88-88dd-f8702d632356}">
|
||||
<relationship name="automator">
|
||||
<destination>{90366133-a0ec-4f7e-bd9a-5f6bfa00fbb1}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{eaaabc63-19d4-442e-be7c-83c90b09f9cd}">
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
@@ -343,11 +352,19 @@
|
||||
<destination>{9e9e30a8-cc97-4cc4-9ecb-c3df0979376d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Automator" id="{90366133-a0ec-4f7e-bd9a-5f6bfa00fbb1}">
|
||||
<property name="nameOfPropertyBeingAutomated">
|
||||
<value>volume</value>
|
||||
</property>
|
||||
<relationship name="automationCurves">
|
||||
<destination>{de148571-fc43-4180-8ddd-f46920a9e1b0}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{f8c15184-15a1-4e9d-95b9-c95327204bfe}">
|
||||
<relationship name="effects">
|
||||
<destination>{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}</destination>
|
||||
<destination>{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}</destination>
|
||||
<destination>{d9b8c0c0-c8d4-47ea-b2e0-4f09e5b7d6e6}</destination>
|
||||
<destination>{a18aff96-be5d-4abd-9a58-ff67f613dc14}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
|
||||
@@ -481,15 +498,19 @@
|
||||
<destination>{f43c0c06-a2e5-4223-a181-c04ff95ccb52}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}" />
|
||||
<object class="SpatialiserEffect" id="{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}">
|
||||
<property name="extentMode">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="soundSize">
|
||||
<value>14.5</value>
|
||||
</property>
|
||||
<object class="AutomationCurve" id="{de148571-fc43-4180-8ddd-f46920a9e1b0}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
</relationship>
|
||||
<relationship name="automationPoints">
|
||||
<destination>{6ed3a17e-16e7-4757-a1e2-77057608ea79}</destination>
|
||||
<destination>{18794128-1d2a-4525-ad7a-a4e031c16339}</destination>
|
||||
<destination>{da66e3bb-be41-475c-8332-7d268b7ae31c}</destination>
|
||||
<destination>{522652d1-483c-4b3f-916d-869a4b009de9}</destination>
|
||||
<destination>{45bc4c90-8b7e-45a9-b395-1c1d8c22ada2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}" />
|
||||
<object class="MultibandEqEffect" id="{d9b8c0c0-c8d4-47ea-b2e0-4f09e5b7d6e6}">
|
||||
<property name="frequencyA">
|
||||
<value>18151.3086</value>
|
||||
@@ -501,6 +522,11 @@
|
||||
<destination>{df95b9af-05c2-4929-bd1c-d4ade15eaef5}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{a18aff96-be5d-4abd-9a58-ff67f613dc14}">
|
||||
<relationship name="plugin">
|
||||
<destination>{0c28d7ce-9e16-4a1a-92f3-93745705d89c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -657,6 +683,46 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{ff851d1b-c1a9-4f57-ac27-20e5708e429b}" />
|
||||
<object class="AutomationPoint" id="{6ed3a17e-16e7-4757-a1e2-77057608ea79}">
|
||||
<property name="position">
|
||||
<value>0.00092690677966101697</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>5.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{18794128-1d2a-4525-ad7a-a4e031c16339}">
|
||||
<property name="position">
|
||||
<value>0.45855402542372881</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>3</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{da66e3bb-be41-475c-8332-7d268b7ae31c}">
|
||||
<property name="position">
|
||||
<value>0.79471221751412424</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{522652d1-483c-4b3f-916d-869a4b009de9}">
|
||||
<property name="position">
|
||||
<value>0.98680261299435024</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-30</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{45bc4c90-8b7e-45a9-b395-1c1d8c22ada2}">
|
||||
<property name="position">
|
||||
<value>0.95000000000000007</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-8</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Automator" id="{df95b9af-05c2-4929-bd1c-d4ade15eaef5}">
|
||||
<property name="nameOfPropertyBeingAutomated">
|
||||
<value>frequencyA</value>
|
||||
@@ -665,6 +731,49 @@
|
||||
<destination>{e46b5ac0-bea7-4474-964c-b5652cd06743}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{0c28d7ce-9e16-4a1a-92f3-93745705d89c}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{f3bcdd31-595a-467a-984e-eaca990a9191}</destination>
|
||||
<destination>{2a8f0aae-1fd3-4698-81af-6c69a8388f14}</destination>
|
||||
<destination>{2237c071-ceea-4e93-ad64-f57d11ea86a7}</destination>
|
||||
<destination>{f11cdafc-bd46-4f2d-beb2-eb22811b7419}</destination>
|
||||
<destination>{d6732fd7-4b8d-4432-8184-703faaccff26}</destination>
|
||||
<destination>{f6367fde-f49e-45cf-b666-088a816833fb}</destination>
|
||||
<destination>{a7ca5de8-da89-4007-8d8d-16cb2bc92ac7}</destination>
|
||||
<destination>{60384119-76df-4162-b8c6-9c55186f1315}</destination>
|
||||
<destination>{09e5e0da-cd90-4006-9bc3-17b530cabb2b}</destination>
|
||||
<destination>{b6ad7a89-99f6-4fe4-94ef-040d3ac3efc8}</destination>
|
||||
<destination>{d6bee293-948b-4237-9f4c-de2130cc337d}</destination>
|
||||
<destination>{0f5b8840-0aa4-4b11-bb5f-0d282ce2be18}</destination>
|
||||
<destination>{1c4b5e82-1db8-4514-a389-0a50c84443c4}</destination>
|
||||
<destination>{8f79b8d6-e643-4471-ab37-ad5ca7a3dde5}</destination>
|
||||
<destination>{ca855213-a18e-4ec3-b282-d57d15b9408c}</destination>
|
||||
<destination>{6abb9507-5c35-41c0-a75f-f37777c7d99b}</destination>
|
||||
<destination>{b3d11fa2-2e73-4e7c-82b9-97324c9ce570}</destination>
|
||||
<destination>{2b12bb3d-e261-4270-acb8-d1065d096324}</destination>
|
||||
<destination>{f04072dd-9aa2-420e-8489-daa65881e26a}</destination>
|
||||
<destination>{3783174c-afda-499c-87ae-bbb40ff53acd}</destination>
|
||||
<destination>{191eb987-4bf0-4694-bb33-f85d092d72d9}</destination>
|
||||
<destination>{87c55d91-2a81-4190-9eb3-b57b994fe291}</destination>
|
||||
<destination>{20a74348-ba8d-4d8a-beb7-30936969cd49}</destination>
|
||||
<destination>{20d08ee9-d7e8-46f4-aa46-905011c7ae1d}</destination>
|
||||
<destination>{6660ba65-da5f-42fb-bf44-e804520bc893}</destination>
|
||||
<destination>{566de084-d333-4021-b6b0-f4129a99ccaa}</destination>
|
||||
<destination>{a45ce436-aa17-448e-853c-17f809d2b7c5}</destination>
|
||||
<destination>{c9010ffd-59b0-4a62-8263-1e66e6e91449}</destination>
|
||||
<destination>{99e02666-c74c-4fc8-8673-29579c1a82a0}</destination>
|
||||
<destination>{580fc226-f826-4021-a138-27bbb0e5d7b1}</destination>
|
||||
<destination>{9cd6f971-2d47-4841-8113-a5eb8a44e99b}</destination>
|
||||
<destination>{5e7b378f-8bf0-4243-af00-558aec05faed}</destination>
|
||||
<destination>{ce4de1dd-0ae3-4d20-a3a8-742bb35f484e}</destination>
|
||||
<destination>{cdcbef7c-0a3f-48f1-9584-d9a502a2e343}</destination>
|
||||
<destination>{9da95a8b-57c5-467f-b2d5-f9a681e6bdc8}</destination>
|
||||
<destination>{a3c91364-36c5-4a03-a59d-efd3581c3ebd}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{e46b5ac0-bea7-4474-964c-b5652cd06743}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -675,6 +784,406 @@
|
||||
<destination>{adcb8d02-64ec-42a9-8a3d-aab08b31ea29}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f3bcdd31-595a-467a-984e-eaca990a9191}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{2a8f0aae-1fd3-4698-81af-6c69a8388f14}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2237c071-ceea-4e93-ad64-f57d11ea86a7}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f11cdafc-bd46-4f2d-beb2-eb22811b7419}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d6732fd7-4b8d-4432-8184-703faaccff26}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f6367fde-f49e-45cf-b666-088a816833fb}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a7ca5de8-da89-4007-8d8d-16cb2bc92ac7}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{60384119-76df-4162-b8c6-9c55186f1315}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{09e5e0da-cd90-4006-9bc3-17b530cabb2b}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b6ad7a89-99f6-4fe4-94ef-040d3ac3efc8}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d6bee293-948b-4237-9f4c-de2130cc337d}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0f5b8840-0aa4-4b11-bb5f-0d282ce2be18}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1c4b5e82-1db8-4514-a389-0a50c84443c4}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>4</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8f79b8d6-e643-4471-ab37-ad5ca7a3dde5}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>8</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ca855213-a18e-4ec3-b282-d57d15b9408c}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6abb9507-5c35-41c0-a75f-f37777c7d99b}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b3d11fa2-2e73-4e7c-82b9-97324c9ce570}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2b12bb3d-e261-4270-acb8-d1065d096324}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f04072dd-9aa2-420e-8489-daa65881e26a}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3783174c-afda-499c-87ae-bbb40ff53acd}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{191eb987-4bf0-4694-bb33-f85d092d72d9}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{87c55d91-2a81-4190-9eb3-b57b994fe291}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{20a74348-ba8d-4d8a-beb7-30936969cd49}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{20d08ee9-d7e8-46f4-aa46-905011c7ae1d}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6660ba65-da5f-42fb-bf44-e804520bc893}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{566de084-d333-4021-b6b0-f4129a99ccaa}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{a45ce436-aa17-448e-853c-17f809d2b7c5}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c9010ffd-59b0-4a62-8263-1e66e6e91449}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{99e02666-c74c-4fc8-8673-29579c1a82a0}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{580fc226-f826-4021-a138-27bbb0e5d7b1}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{9cd6f971-2d47-4841-8113-a5eb8a44e99b}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5e7b378f-8bf0-4243-af00-558aec05faed}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ce4de1dd-0ae3-4d20-a3a8-742bb35f484e}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{cdcbef7c-0a3f-48f1-9584-d9a502a2e343}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9da95a8b-57c5-467f-b2d5-f9a681e6bdc8}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{a3c91364-36c5-4a03-a59d-efd3581c3ebd}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{9df682e5-e4aa-423d-99d6-33b3d8bddd69}">
|
||||
<property name="position">
|
||||
<value>0.00061793785310734458</value>
|
||||
@@ -688,7 +1197,7 @@
|
||||
<value>0.99496822033898302</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>180</value>
|
||||
<value>35</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{adcb8d02-64ec-42a9-8a3d-aab08b31ea29}">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ElevatorMovement</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{10599e26-82f2-47e5-9e3a-1b7ceae11d41}</destination>
|
||||
@@ -77,7 +77,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{02612956-0842-47a1-a48d-7779aeba217b}">
|
||||
<property name="volume">
|
||||
<value>2</value>
|
||||
<value>4.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{6bf9e111-0c5b-44a6-8d0a-7f7b9a72a8af}</destination>
|
||||
@@ -111,7 +111,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{70736360-07ff-485f-bc8e-3a9b35b9cbd7}">
|
||||
<property name="volume">
|
||||
<value>5</value>
|
||||
<value>6.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -129,8 +129,8 @@
|
||||
<object class="MixerBusEffectChain" id="{6bf9e111-0c5b-44a6-8d0a-7f7b9a72a8af}">
|
||||
<relationship name="effects">
|
||||
<destination>{b2df2382-b312-4bc9-9fe6-00c97951c253}</destination>
|
||||
<destination>{7d46e40d-a009-42ab-9ee8-31e410c9616c}</destination>
|
||||
<destination>{256895d0-5da0-4929-b540-dde529a2dd7e}</destination>
|
||||
<destination>{e41c2f49-7117-43dd-95fc-72fc6329fb03}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{66e45fc4-fa70-4f5b-8728-46f58b587670}" />
|
||||
@@ -171,7 +171,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{33cb75b0-9501-4c0d-a2b7-0d853e34ae53}" />
|
||||
<object class="MixerBusFader" id="{b2df2382-b312-4bc9-9fe6-00c97951c253}" />
|
||||
<object class="SpatialiserEffect" id="{7d46e40d-a009-42ab-9ee8-31e410c9616c}" />
|
||||
<object class="MultibandEqEffect" id="{256895d0-5da0-4929-b540-dde529a2dd7e}">
|
||||
<property name="filterTypeA">
|
||||
<value>9</value>
|
||||
@@ -216,6 +215,11 @@
|
||||
<value>-4.32751083</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{e41c2f49-7117-43dd-95fc-72fc6329fb03}">
|
||||
<relationship name="plugin">
|
||||
<destination>{0e220c83-6b6e-49e0-be66-8e98ce1dc34b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{cce0756c-ac3f-48a6-b831-7b8d5ba8a4df}">
|
||||
<property name="position">
|
||||
<value>5</value>
|
||||
@@ -250,4 +254,447 @@
|
||||
<value>2.58620739</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{0e220c83-6b6e-49e0-be66-8e98ce1dc34b}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{df685882-06f7-41e0-8110-e27d76552194}</destination>
|
||||
<destination>{07bb5c6f-93f8-4579-9cfd-43a953f44cbd}</destination>
|
||||
<destination>{8d7c8053-7942-4284-b8b1-f1755152c35a}</destination>
|
||||
<destination>{2ae5e5aa-b663-480a-943f-41f731575cdb}</destination>
|
||||
<destination>{9c7e84b9-f2ec-4b1f-ae12-44d97c9e4dec}</destination>
|
||||
<destination>{88b1888a-f483-4714-8fc0-c06327a5e925}</destination>
|
||||
<destination>{4a16fd32-8266-4b96-b59e-5767c80465e5}</destination>
|
||||
<destination>{27748b31-d303-47dd-adc0-58c8f09abd92}</destination>
|
||||
<destination>{d5568e88-591f-480c-a76d-36b96afb3708}</destination>
|
||||
<destination>{96d7f181-9c3b-4242-ba4f-4a7767efc482}</destination>
|
||||
<destination>{58ecbf32-92d8-4760-b3e7-f5b09239bf45}</destination>
|
||||
<destination>{5c2b63b9-4c98-4dc1-ad91-4c8705fd4479}</destination>
|
||||
<destination>{86ddb528-ce47-4c17-8a2b-91755cb38e61}</destination>
|
||||
<destination>{adaa32f8-9058-48a8-809b-e7eb282ccae8}</destination>
|
||||
<destination>{f3a2d5c5-9250-41c9-b45d-b59e9ec56187}</destination>
|
||||
<destination>{6550d01f-22a6-48e6-844d-b2a4ed155611}</destination>
|
||||
<destination>{a7b1a668-86eb-4c9d-9129-ade3ba434767}</destination>
|
||||
<destination>{74b27c15-11bd-416b-9148-5369a74a285a}</destination>
|
||||
<destination>{0aef745e-7e97-4063-be30-76de705a8ddb}</destination>
|
||||
<destination>{d451c5f4-4470-4593-9e0f-13143563f50c}</destination>
|
||||
<destination>{dcae8559-f3c5-4e7e-b7fb-3dbb2fe25fbe}</destination>
|
||||
<destination>{845f3274-7f70-43e5-8670-4605fd8bbde6}</destination>
|
||||
<destination>{20aeba00-d62b-4c92-b796-ecd5460f5ed7}</destination>
|
||||
<destination>{cfc2f78b-c02e-43ef-a8f4-5bb7040e2d14}</destination>
|
||||
<destination>{090d0938-c037-463e-a105-fd49a3e0248f}</destination>
|
||||
<destination>{7b7d5459-2002-4fea-be77-0129c655626c}</destination>
|
||||
<destination>{ffaab5a9-3681-4462-a4dc-5e1524d222f7}</destination>
|
||||
<destination>{e6fd9a85-149b-438c-a97a-779f0a80adac}</destination>
|
||||
<destination>{e413b5d8-33b0-4f3e-8850-5892fe1ac388}</destination>
|
||||
<destination>{86c5db79-0400-44d6-99f4-c120753b3977}</destination>
|
||||
<destination>{03574c9c-25e2-498d-afce-d38b0151a17a}</destination>
|
||||
<destination>{eaf2f76b-2321-47b1-91a1-367827f461ac}</destination>
|
||||
<destination>{22ddace5-6083-419f-b5a8-161553808f77}</destination>
|
||||
<destination>{fcfbef8e-e4da-4e31-b626-39fcf143e8af}</destination>
|
||||
<destination>{645a09b2-47bf-4664-ad81-aa2e07a21663}</destination>
|
||||
<destination>{d11f6a94-a623-474d-b42d-5fa965ec135a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{df685882-06f7-41e0-8110-e27d76552194}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{07bb5c6f-93f8-4579-9cfd-43a953f44cbd}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8d7c8053-7942-4284-b8b1-f1755152c35a}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2ae5e5aa-b663-480a-943f-41f731575cdb}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9c7e84b9-f2ec-4b1f-ae12-44d97c9e4dec}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{88b1888a-f483-4714-8fc0-c06327a5e925}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4a16fd32-8266-4b96-b59e-5767c80465e5}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{27748b31-d303-47dd-adc0-58c8f09abd92}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d5568e88-591f-480c-a76d-36b96afb3708}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{96d7f181-9c3b-4242-ba4f-4a7767efc482}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{58ecbf32-92d8-4760-b3e7-f5b09239bf45}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5c2b63b9-4c98-4dc1-ad91-4c8705fd4479}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{86ddb528-ce47-4c17-8a2b-91755cb38e61}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{adaa32f8-9058-48a8-809b-e7eb282ccae8}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>9</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f3a2d5c5-9250-41c9-b45d-b59e9ec56187}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6550d01f-22a6-48e6-844d-b2a4ed155611}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a7b1a668-86eb-4c9d-9129-ade3ba434767}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{74b27c15-11bd-416b-9148-5369a74a285a}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0aef745e-7e97-4063-be30-76de705a8ddb}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.0149999997</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d451c5f4-4470-4593-9e0f-13143563f50c}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.05999994</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dcae8559-f3c5-4e7e-b7fb-3dbb2fe25fbe}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{845f3274-7f70-43e5-8670-4605fd8bbde6}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{20aeba00-d62b-4c92-b796-ecd5460f5ed7}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cfc2f78b-c02e-43ef-a8f4-5bb7040e2d14}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{090d0938-c037-463e-a105-fd49a3e0248f}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7b7d5459-2002-4fea-be77-0129c655626c}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ffaab5a9-3681-4462-a4dc-5e1524d222f7}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e6fd9a85-149b-438c-a97a-779f0a80adac}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e413b5d8-33b0-4f3e-8850-5892fe1ac388}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{86c5db79-0400-44d6-99f4-c120753b3977}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{03574c9c-25e2-498d-afce-d38b0151a17a}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{eaf2f76b-2321-47b1-91a1-367827f461ac}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{22ddace5-6083-419f-b5a8-161553808f77}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fcfbef8e-e4da-4e31-b626-39fcf143e8af}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{645a09b2-47bf-4664-ad81-aa2e07a21663}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d11f6a94-a623-474d-b42d-5fa965ec135a}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>DoorOpen</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{c1996ea5-31f2-4d15-896b-ea306e738127}</destination>
|
||||
@@ -114,7 +114,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{cb54133c-b44c-474a-9a2c-d08a49c5f388}">
|
||||
<property name="volume">
|
||||
<value>10</value>
|
||||
<value>9</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -132,7 +132,7 @@
|
||||
<object class="MixerBusEffectChain" id="{5f3e822b-bfc7-44f4-9a4f-421b142d08a3}">
|
||||
<relationship name="effects">
|
||||
<destination>{eed494ba-eb97-40bd-824f-0d1a12fd4e80}</destination>
|
||||
<destination>{184f8826-a832-4799-8c5d-c74735b334c0}</destination>
|
||||
<destination>{b81ed56c-1673-409f-80a5-3013529ec2fc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{1a0e2550-1e70-462d-9ee7-c3cc38104754}" />
|
||||
@@ -176,7 +176,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{ffc99318-f622-4422-8fdc-6b7126f9bfde}" />
|
||||
<object class="MixerBusFader" id="{eed494ba-eb97-40bd-824f-0d1a12fd4e80}" />
|
||||
<object class="SpatialiserEffect" id="{184f8826-a832-4799-8c5d-c74735b334c0}" />
|
||||
<object class="PluginEffect" id="{b81ed56c-1673-409f-80a5-3013529ec2fc}">
|
||||
<relationship name="plugin">
|
||||
<destination>{e633d375-cc22-47e7-b63d-dd2c0c10cfba}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{32ecb020-66d1-440a-9b50-2fe774979bfe}">
|
||||
<property name="position">
|
||||
<value>0.15000000000000036</value>
|
||||
@@ -197,4 +201,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{9e1eaa23-ce41-423f-9197-fd5098d2dc6f}" />
|
||||
<object class="Plugin" id="{e633d375-cc22-47e7-b63d-dd2c0c10cfba}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{e286a38c-6057-4e99-9665-f21743a0fee3}</destination>
|
||||
<destination>{534f5a48-12ea-4d79-bfed-3e6f20542758}</destination>
|
||||
<destination>{c7528a0d-09e5-4ab1-bf7f-3c4bd51c177b}</destination>
|
||||
<destination>{76d6f907-e668-4362-9b7b-c4b2223a9abf}</destination>
|
||||
<destination>{ca388751-2737-4f38-89cb-08f727fe9016}</destination>
|
||||
<destination>{f16d6d1c-9750-41a2-82de-42f567dcc67d}</destination>
|
||||
<destination>{978faec3-9641-42c2-88d0-d3bf50103b4b}</destination>
|
||||
<destination>{fc8a381a-085a-4f29-aa2e-7fb43f34d67b}</destination>
|
||||
<destination>{f6ae2ae7-5103-47b9-b968-cde924d1d88f}</destination>
|
||||
<destination>{c15610ac-4c56-44d2-bbc3-97f7189649ae}</destination>
|
||||
<destination>{5a3dff77-e3d3-411e-a940-49af6eb21dfd}</destination>
|
||||
<destination>{54e81866-bf45-490d-b374-116a197d949f}</destination>
|
||||
<destination>{68ee816d-cd19-40ea-bbbf-b45a2cf53f16}</destination>
|
||||
<destination>{3d824976-7649-4316-8eeb-c444b5f32084}</destination>
|
||||
<destination>{df3ad6c1-0991-49e4-8a0e-6f6388f5b9af}</destination>
|
||||
<destination>{8f66e0ab-d2c1-4d32-b178-c5afeaf17756}</destination>
|
||||
<destination>{577a1600-05ff-4b06-931a-518c79c81ffc}</destination>
|
||||
<destination>{67441962-ff2a-414c-98cd-8979bce6a82d}</destination>
|
||||
<destination>{358fcc9e-c485-4790-b5d7-a717f5e428a1}</destination>
|
||||
<destination>{ac3ffa3b-e3e3-4594-8a61-89b969a997f2}</destination>
|
||||
<destination>{62e2cf9d-baa6-4c68-8acc-cbbb16944564}</destination>
|
||||
<destination>{c27a791d-647c-4257-972a-ec93e8fce1d6}</destination>
|
||||
<destination>{de8dcbeb-8297-43f7-b909-a464d819c3a2}</destination>
|
||||
<destination>{0523674c-b2c1-435b-8cba-a5aaebd8e1e4}</destination>
|
||||
<destination>{7bbd1a08-e4cd-4873-a39c-66a4e13d03bb}</destination>
|
||||
<destination>{aef754f1-eda2-48e9-9673-4fe9529c4651}</destination>
|
||||
<destination>{8ed3c751-1a1b-4b08-ad1c-ac44fc2b4937}</destination>
|
||||
<destination>{ee830c1a-105f-4c79-81c1-2f68a13053d5}</destination>
|
||||
<destination>{4727089a-8ddf-40f7-a7b5-2809a44810ba}</destination>
|
||||
<destination>{e1a407ca-a707-41d7-9130-ba782a8f8dc4}</destination>
|
||||
<destination>{16e20236-a4c6-436e-93ee-129197e30d49}</destination>
|
||||
<destination>{ad3151c4-c0f8-4e9e-bdaf-7b66f21ac8b7}</destination>
|
||||
<destination>{19e30ef5-0b2d-4450-bc33-3d824d10f7a1}</destination>
|
||||
<destination>{dddd7ce9-8442-4398-84b6-856086ac55d1}</destination>
|
||||
<destination>{c8d5dc3a-887f-41bf-81b3-7e5c90dc603d}</destination>
|
||||
<destination>{fd9141f7-3e87-4867-a494-1d3d35c30ad2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e286a38c-6057-4e99-9665-f21743a0fee3}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{534f5a48-12ea-4d79-bfed-3e6f20542758}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c7528a0d-09e5-4ab1-bf7f-3c4bd51c177b}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{76d6f907-e668-4362-9b7b-c4b2223a9abf}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ca388751-2737-4f38-89cb-08f727fe9016}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f16d6d1c-9750-41a2-82de-42f567dcc67d}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{978faec3-9641-42c2-88d0-d3bf50103b4b}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{fc8a381a-085a-4f29-aa2e-7fb43f34d67b}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f6ae2ae7-5103-47b9-b968-cde924d1d88f}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c15610ac-4c56-44d2-bbc3-97f7189649ae}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5a3dff77-e3d3-411e-a940-49af6eb21dfd}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{54e81866-bf45-490d-b374-116a197d949f}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{68ee816d-cd19-40ea-bbbf-b45a2cf53f16}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3d824976-7649-4316-8eeb-c444b5f32084}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{df3ad6c1-0991-49e4-8a0e-6f6388f5b9af}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8f66e0ab-d2c1-4d32-b178-c5afeaf17756}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{577a1600-05ff-4b06-931a-518c79c81ffc}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{67441962-ff2a-414c-98cd-8979bce6a82d}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{358fcc9e-c485-4790-b5d7-a717f5e428a1}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.794999957</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ac3ffa3b-e3e3-4594-8a61-89b969a997f2}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{62e2cf9d-baa6-4c68-8acc-cbbb16944564}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c27a791d-647c-4257-972a-ec93e8fce1d6}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{de8dcbeb-8297-43f7-b909-a464d819c3a2}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0523674c-b2c1-435b-8cba-a5aaebd8e1e4}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7bbd1a08-e4cd-4873-a39c-66a4e13d03bb}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{aef754f1-eda2-48e9-9673-4fe9529c4651}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8ed3c751-1a1b-4b08-ad1c-ac44fc2b4937}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ee830c1a-105f-4c79-81c1-2f68a13053d5}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{4727089a-8ddf-40f7-a7b5-2809a44810ba}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e1a407ca-a707-41d7-9130-ba782a8f8dc4}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{16e20236-a4c6-436e-93ee-129197e30d49}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ad3151c4-c0f8-4e9e-bdaf-7b66f21ac8b7}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{19e30ef5-0b2d-4450-bc33-3d824d10f7a1}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{dddd7ce9-8442-4398-84b6-856086ac55d1}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c8d5dc3a-887f-41bf-81b3-7e5c90dc603d}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{fd9141f7-3e87-4867-a494-1d3d35c30ad2}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>BowPullback</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{e69ea1fa-d066-4697-b1bb-287ed21fb082}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{3ee3d269-0575-444d-9ac7-99bfc14383c5}</destination>
|
||||
@@ -119,7 +119,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{475422c7-8980-4745-b3b9-7ee34ed3140b}">
|
||||
<property name="volume">
|
||||
<value>-7</value>
|
||||
<value>-5.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -137,7 +137,7 @@
|
||||
<object class="MixerBusEffectChain" id="{3ee3d269-0575-444d-9ac7-99bfc14383c5}">
|
||||
<relationship name="effects">
|
||||
<destination>{18066f1e-0d88-442b-a4ca-ddd5d51d7e63}</destination>
|
||||
<destination>{28c102e2-53ca-493f-945e-c71fa9c5c34a}</destination>
|
||||
<destination>{79f5459e-63b4-4f8e-965e-839ef8edeacf}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{cc6c1672-3478-49a0-a679-9894f057d8b0}" />
|
||||
@@ -237,7 +237,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{67598f38-c82a-4e48-8331-440017ee450c}" />
|
||||
<object class="MixerBusFader" id="{18066f1e-0d88-442b-a4ca-ddd5d51d7e63}" />
|
||||
<object class="SpatialiserEffect" id="{28c102e2-53ca-493f-945e-c71fa9c5c34a}" />
|
||||
<object class="PluginEffect" id="{79f5459e-63b4-4f8e-965e-839ef8edeacf}">
|
||||
<relationship name="plugin">
|
||||
<destination>{c953c4b0-2141-4914-bd2b-16d44743ca53}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{7a3c6725-080e-4d1e-8830-bdcbc6308801}">
|
||||
<property name="position">
|
||||
<value>0.76000000000000001</value>
|
||||
@@ -258,4 +262,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{9992176d-209d-4b0a-ae82-6f93b1d8dc69}" />
|
||||
<object class="Plugin" id="{c953c4b0-2141-4914-bd2b-16d44743ca53}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{54783dc7-b2e2-4ebb-b6b5-6d58293f9c29}</destination>
|
||||
<destination>{603fa095-1dc0-4863-ba92-0c3f3cd39c08}</destination>
|
||||
<destination>{6f969e57-d62b-4ea3-8cfb-c49e40fc288f}</destination>
|
||||
<destination>{03f57f0a-5576-4592-a948-d4c4f4e13f4f}</destination>
|
||||
<destination>{0783cd7b-ecff-4f21-a4b1-8b5a777e61c2}</destination>
|
||||
<destination>{2b3b55ba-1a27-4d14-bee2-986942d3565a}</destination>
|
||||
<destination>{e8a5182e-a8b0-4df6-bb0d-d88d9e8a509d}</destination>
|
||||
<destination>{181b8e4a-0885-4dfd-aabd-f872c31576d6}</destination>
|
||||
<destination>{34eecceb-5826-4ae4-b6b1-d70c64f6c4bc}</destination>
|
||||
<destination>{4da24a66-fe98-4019-aea6-059fe29b59f6}</destination>
|
||||
<destination>{eda311f9-f927-4a26-84d1-772fbb8eb8da}</destination>
|
||||
<destination>{6fb15ce6-a743-45db-b540-23112cbd5d0f}</destination>
|
||||
<destination>{7a919e21-d8e6-414c-ba82-d7be8f5fcb73}</destination>
|
||||
<destination>{8ce4fbae-627a-4b09-acf5-035b49aae5bd}</destination>
|
||||
<destination>{f75c3ebe-e856-4072-a528-f76fa8e82d40}</destination>
|
||||
<destination>{40e5fd87-3796-46e2-b83e-402907cc4d91}</destination>
|
||||
<destination>{e88f2f1a-047c-4c53-840c-bceb21c6115c}</destination>
|
||||
<destination>{8d2cc153-8a62-4a4c-b077-3cba2a7cda56}</destination>
|
||||
<destination>{56de3583-bfac-4e14-9aca-1196981a7658}</destination>
|
||||
<destination>{df68cdd7-3356-4bbe-b5d9-1c227e4242cf}</destination>
|
||||
<destination>{8ffa5d02-2753-40ca-95dc-e20a2f0da513}</destination>
|
||||
<destination>{37246ffe-4659-4966-85f8-e58f70b66227}</destination>
|
||||
<destination>{0f45a8af-ac64-4350-baa4-7c2c1f2959d4}</destination>
|
||||
<destination>{2b93233e-1ea5-4497-a9f3-cc0f268580a9}</destination>
|
||||
<destination>{c5711f52-1ab0-4c8a-afea-e5037a94f067}</destination>
|
||||
<destination>{d3e40c92-8b9d-4430-b2f0-df182f7eb19a}</destination>
|
||||
<destination>{6428fe7b-3ecd-4d4f-97aa-26a3fdb0146f}</destination>
|
||||
<destination>{44806aab-d800-440d-ac51-c981eae52e1b}</destination>
|
||||
<destination>{163c0db4-4ee6-42cb-aa92-4f65192df061}</destination>
|
||||
<destination>{4daf1525-60c7-47cc-a027-36e07f031834}</destination>
|
||||
<destination>{58df32d7-7d42-4326-9a5f-a9df945f1d50}</destination>
|
||||
<destination>{8c053745-bab2-42c9-bd46-0b307f1c7e87}</destination>
|
||||
<destination>{477da7b5-99f2-411e-98da-ff16ed7cdc15}</destination>
|
||||
<destination>{5f49345e-c53a-4e88-8af9-524478239f24}</destination>
|
||||
<destination>{aeccc382-c93e-4bc8-b5a8-ebe6d67eb7fe}</destination>
|
||||
<destination>{f54e655e-1dca-4cfc-b64e-8ae6542693d3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{54783dc7-b2e2-4ebb-b6b5-6d58293f9c29}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{603fa095-1dc0-4863-ba92-0c3f3cd39c08}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6f969e57-d62b-4ea3-8cfb-c49e40fc288f}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{03f57f0a-5576-4592-a948-d4c4f4e13f4f}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0783cd7b-ecff-4f21-a4b1-8b5a777e61c2}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2b3b55ba-1a27-4d14-bee2-986942d3565a}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e8a5182e-a8b0-4df6-bb0d-d88d9e8a509d}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{181b8e4a-0885-4dfd-aabd-f872c31576d6}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{34eecceb-5826-4ae4-b6b1-d70c64f6c4bc}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4da24a66-fe98-4019-aea6-059fe29b59f6}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{eda311f9-f927-4a26-84d1-772fbb8eb8da}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6fb15ce6-a743-45db-b540-23112cbd5d0f}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7a919e21-d8e6-414c-ba82-d7be8f5fcb73}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8ce4fbae-627a-4b09-acf5-035b49aae5bd}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f75c3ebe-e856-4072-a528-f76fa8e82d40}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{40e5fd87-3796-46e2-b83e-402907cc4d91}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e88f2f1a-047c-4c53-840c-bceb21c6115c}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8d2cc153-8a62-4a4c-b077-3cba2a7cda56}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{56de3583-bfac-4e14-9aca-1196981a7658}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.219999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{df68cdd7-3356-4bbe-b5d9-1c227e4242cf}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.65999997</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8ffa5d02-2753-40ca-95dc-e20a2f0da513}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{37246ffe-4659-4966-85f8-e58f70b66227}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0f45a8af-ac64-4350-baa4-7c2c1f2959d4}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2b93233e-1ea5-4497-a9f3-cc0f268580a9}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c5711f52-1ab0-4c8a-afea-e5037a94f067}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d3e40c92-8b9d-4430-b2f0-df182f7eb19a}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{6428fe7b-3ecd-4d4f-97aa-26a3fdb0146f}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{44806aab-d800-440d-ac51-c981eae52e1b}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{163c0db4-4ee6-42cb-aa92-4f65192df061}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4daf1525-60c7-47cc-a027-36e07f031834}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{58df32d7-7d42-4326-9a5f-a9df945f1d50}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8c053745-bab2-42c9-bd46-0b307f1c7e87}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{477da7b5-99f2-411e-98da-ff16ed7cdc15}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5f49345e-c53a-4e88-8af9-524478239f24}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{aeccc382-c93e-4bc8-b5a8-ebe6d67eb7fe}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f54e655e-1dca-4cfc-b64e-8ae6542693d3}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>BoltStopSound</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{c1996ea5-31f2-4d15-896b-ea306e738127}</destination>
|
||||
@@ -72,6 +72,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{6913b457-2df4-468b-a726-524722e10ad9}">
|
||||
<property name="volume">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{b5a0ecb7-7f83-4a76-afaf-66e16365f63d}</destination>
|
||||
</relationship>
|
||||
@@ -128,9 +131,9 @@
|
||||
<object class="MixerBusEffectChain" id="{b5a0ecb7-7f83-4a76-afaf-66e16365f63d}">
|
||||
<relationship name="effects">
|
||||
<destination>{3736e3ae-7ec8-45fc-8a21-17a45aa7e86a}</destination>
|
||||
<destination>{e2c1f77e-3ab7-4be7-bdbd-65a35dcc99c5}</destination>
|
||||
<destination>{59a6fded-8c00-4770-b511-d17f89ae485a}</destination>
|
||||
<destination>{1112f9e7-08a0-46ea-b399-7fb72048fcd6}</destination>
|
||||
<destination>{e7d8e6a9-b9be-4bc5-b074-8ed58ded1686}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{8c9b02e7-f90b-4752-a4e4-83ee09e606aa}" />
|
||||
@@ -158,7 +161,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{f60beb25-525d-4fc6-b87c-9a879e4d76c0}" />
|
||||
<object class="MixerBusFader" id="{3736e3ae-7ec8-45fc-8a21-17a45aa7e86a}" />
|
||||
<object class="SpatialiserEffect" id="{e2c1f77e-3ab7-4be7-bdbd-65a35dcc99c5}" />
|
||||
<object class="MultibandEqEffect" id="{59a6fded-8c00-4770-b511-d17f89ae485a}">
|
||||
<property name="filterTypeB">
|
||||
<value>5</value>
|
||||
@@ -187,6 +189,11 @@
|
||||
<destination>{9321dce1-f118-4a03-afec-bca741994140}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{e7d8e6a9-b9be-4bc5-b074-8ed58ded1686}">
|
||||
<relationship name="plugin">
|
||||
<destination>{b0b93207-986d-430b-ab8f-af5f540517b2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{df4fe024-bb4d-4cb0-856a-1818b096c24d}">
|
||||
<property name="position">
|
||||
<value>0.40000000000000002</value>
|
||||
@@ -234,6 +241,49 @@
|
||||
<destination>{7abf0982-75de-459a-ae97-bd6d092ab33c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{b0b93207-986d-430b-ab8f-af5f540517b2}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{b27afd19-153f-42d8-828d-c82e916fa8be}</destination>
|
||||
<destination>{50a0c03e-4490-4d68-a4f0-b6b11fbf7fb8}</destination>
|
||||
<destination>{484c3155-4ffa-4b85-8e84-ccf0bac70c6a}</destination>
|
||||
<destination>{0aab0763-8187-4551-af29-d74f4d6656a8}</destination>
|
||||
<destination>{4c7aa996-8bee-4f82-bcc3-797ff696a21a}</destination>
|
||||
<destination>{e0e8bfff-af61-43c8-b8c3-f16fb6b74159}</destination>
|
||||
<destination>{57053b59-14ef-4c5a-93c5-5a8747a35519}</destination>
|
||||
<destination>{626410a3-56dc-4d5e-ae60-86f2cfce11d1}</destination>
|
||||
<destination>{e7c6ce79-a7c9-41bf-b4cd-5b49bb26a12d}</destination>
|
||||
<destination>{c4508519-e711-41b4-a5a9-901a0b1a2f35}</destination>
|
||||
<destination>{409ef6b2-34e2-4893-a0ec-9ff69693a2f8}</destination>
|
||||
<destination>{76970f31-750c-44b2-af84-2a6ee4a95a77}</destination>
|
||||
<destination>{290e7034-3af5-474b-bc2f-2000ae8c96a3}</destination>
|
||||
<destination>{dd737a8a-5a96-4ce1-917e-152eac70d3d9}</destination>
|
||||
<destination>{f808c2ae-3f67-4661-83aa-0d0df045e88b}</destination>
|
||||
<destination>{ccc58ceb-ba9f-4f84-93a5-8b9a9d7927f7}</destination>
|
||||
<destination>{491e5233-10a7-4950-a152-8c83516f3646}</destination>
|
||||
<destination>{86cd45e5-e579-4d2e-aa18-8ecbb444e3c0}</destination>
|
||||
<destination>{e2654ac3-feb5-416c-8cfd-53877c60fda9}</destination>
|
||||
<destination>{cec89576-b66b-4072-b3f9-e8232040697e}</destination>
|
||||
<destination>{0a76c1e4-761d-43d6-966a-774a333a1088}</destination>
|
||||
<destination>{c167da6e-37c8-4460-b14f-07c18a169a26}</destination>
|
||||
<destination>{15be55a5-da84-4a75-a9a6-e876134fbdfb}</destination>
|
||||
<destination>{30e3091a-46f4-40c7-86fe-4db84f15a895}</destination>
|
||||
<destination>{8263cf20-2772-4420-87c1-0a7354cb06f9}</destination>
|
||||
<destination>{dc7d8048-0cc6-4c4d-8062-d3ad0ac110c6}</destination>
|
||||
<destination>{747cfb98-eb3f-4c09-b8e4-f2b80a380449}</destination>
|
||||
<destination>{61b145d9-684d-4b7c-bda0-42af70712e96}</destination>
|
||||
<destination>{100ca20b-ee2f-4d04-aea2-d99bcb934a79}</destination>
|
||||
<destination>{f5c0d178-19a7-49e8-bbcc-c65ea990d470}</destination>
|
||||
<destination>{16b30526-c5d5-49a2-9f45-05c1d3acfe53}</destination>
|
||||
<destination>{f4404894-10f1-4f12-9f59-3502e1ae47a0}</destination>
|
||||
<destination>{1b629f01-25c9-4a8b-a23e-78b11a0a3f77}</destination>
|
||||
<destination>{f2cec427-9a30-4fe2-9166-7d68846e6609}</destination>
|
||||
<destination>{bde456a8-fbb2-4335-9fa8-92dda0084926}</destination>
|
||||
<destination>{f06c0f72-2f51-443d-aa48-6fa8deff592a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{7abf0982-75de-459a-ae97-bd6d092ab33c}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -245,6 +295,406 @@
|
||||
<destination>{9c6501f4-ac98-437e-b4d0-066a9114f456}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{b27afd19-153f-42d8-828d-c82e916fa8be}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{50a0c03e-4490-4d68-a4f0-b6b11fbf7fb8}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{484c3155-4ffa-4b85-8e84-ccf0bac70c6a}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0aab0763-8187-4551-af29-d74f4d6656a8}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4c7aa996-8bee-4f82-bcc3-797ff696a21a}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e0e8bfff-af61-43c8-b8c3-f16fb6b74159}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{57053b59-14ef-4c5a-93c5-5a8747a35519}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{626410a3-56dc-4d5e-ae60-86f2cfce11d1}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e7c6ce79-a7c9-41bf-b4cd-5b49bb26a12d}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c4508519-e711-41b4-a5a9-901a0b1a2f35}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{409ef6b2-34e2-4893-a0ec-9ff69693a2f8}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{76970f31-750c-44b2-af84-2a6ee4a95a77}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{290e7034-3af5-474b-bc2f-2000ae8c96a3}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dd737a8a-5a96-4ce1-917e-152eac70d3d9}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f808c2ae-3f67-4661-83aa-0d0df045e88b}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ccc58ceb-ba9f-4f84-93a5-8b9a9d7927f7}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{491e5233-10a7-4950-a152-8c83516f3646}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{86cd45e5-e579-4d2e-aa18-8ecbb444e3c0}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e2654ac3-feb5-416c-8cfd-53877c60fda9}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.729999959</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cec89576-b66b-4072-b3f9-e8232040697e}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.41999996</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0a76c1e4-761d-43d6-966a-774a333a1088}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c167da6e-37c8-4460-b14f-07c18a169a26}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{15be55a5-da84-4a75-a9a6-e876134fbdfb}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{30e3091a-46f4-40c7-86fe-4db84f15a895}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8263cf20-2772-4420-87c1-0a7354cb06f9}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dc7d8048-0cc6-4c4d-8062-d3ad0ac110c6}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{747cfb98-eb3f-4c09-b8e4-f2b80a380449}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{61b145d9-684d-4b7c-bda0-42af70712e96}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{100ca20b-ee2f-4d04-aea2-d99bcb934a79}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f5c0d178-19a7-49e8-bbcc-c65ea990d470}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{16b30526-c5d5-49a2-9f45-05c1d3acfe53}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f4404894-10f1-4f12-9f59-3502e1ae47a0}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{1b629f01-25c9-4a8b-a23e-78b11a0a3f77}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f2cec427-9a30-4fe2-9166-7d68846e6609}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{bde456a8-fbb2-4335-9fa8-92dda0084926}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f06c0f72-2f51-443d-aa48-6fa8deff592a}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{65ee03d2-5398-4450-9248-49cd08e1211a}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
|
||||
@@ -539,7 +539,7 @@
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-9</value>
|
||||
<value>-5.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{744b083e-7c2d-465c-954e-fc7cc6af759b}">
|
||||
@@ -547,7 +547,7 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-66.6666641</value>
|
||||
<value>-51.6666679</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>DoorClose</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{c1996ea5-31f2-4d15-896b-ea306e738127}</destination>
|
||||
@@ -105,7 +105,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{42f44c39-be5a-4843-b71b-85ba85f03058}">
|
||||
<property name="volume">
|
||||
<value>6.5</value>
|
||||
<value>7</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -123,7 +123,7 @@
|
||||
<object class="MixerBusEffectChain" id="{d0503be0-4bc8-4f3b-8d7a-dea749486564}">
|
||||
<relationship name="effects">
|
||||
<destination>{c34cbf2d-1145-4947-a797-15b387ef44fe}</destination>
|
||||
<destination>{997acc30-5b35-4080-be08-5c2a0fea4086}</destination>
|
||||
<destination>{4305304d-46fe-4d12-a296-8371fbe28028}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{152fb52b-1fb9-4754-9f1c-bcde4f7f4683}" />
|
||||
@@ -160,7 +160,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{795d4f80-f3f5-4028-bd11-747ab41dd89c}" />
|
||||
<object class="MixerBusFader" id="{c34cbf2d-1145-4947-a797-15b387ef44fe}" />
|
||||
<object class="SpatialiserEffect" id="{997acc30-5b35-4080-be08-5c2a0fea4086}" />
|
||||
<object class="PluginEffect" id="{4305304d-46fe-4d12-a296-8371fbe28028}">
|
||||
<relationship name="plugin">
|
||||
<destination>{762d71ee-22f0-4783-ab77-7c9656ea4a71}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{34f2cc00-7369-44c1-a2cf-b1894a01e1d2}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -216,4 +220,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{5a95f23d-7334-437b-8db4-c7ada2853f1b}" />
|
||||
<object class="Plugin" id="{762d71ee-22f0-4783-ab77-7c9656ea4a71}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{6f272ff9-9b20-4dcc-8a44-a8c8eb02f93d}</destination>
|
||||
<destination>{ae658f09-3d92-4ec4-9ab8-22f7920bbb74}</destination>
|
||||
<destination>{17386fe7-07b8-498a-bd5b-6141e39cee95}</destination>
|
||||
<destination>{21e5271d-99de-407e-8b4b-004d94143126}</destination>
|
||||
<destination>{2f025cac-d10e-403d-8983-05e822fbb69a}</destination>
|
||||
<destination>{a5fad757-a054-469d-a532-d5b92513e11a}</destination>
|
||||
<destination>{54c9792f-b7fb-4ea7-8cf7-eb6cde961201}</destination>
|
||||
<destination>{8147476a-7366-441a-a6d9-e249bbba1278}</destination>
|
||||
<destination>{126732ce-5df5-440c-8529-3d1ccf3faf6b}</destination>
|
||||
<destination>{b57ed780-744b-45a6-b30a-ee061131ba44}</destination>
|
||||
<destination>{d75d6224-53be-4480-9f25-57d27e68096c}</destination>
|
||||
<destination>{e2cb62ac-d5d9-4f41-8488-64cc16a5f8e2}</destination>
|
||||
<destination>{4573aed2-b838-4bfc-9090-fe9dccc0c049}</destination>
|
||||
<destination>{539d7a56-fdfb-4f68-9e95-bb4e38608f81}</destination>
|
||||
<destination>{eebf7bca-abe0-4e52-9bd1-3239133d057a}</destination>
|
||||
<destination>{819566e4-2c39-46f0-898f-34c8fa368d9d}</destination>
|
||||
<destination>{a6ca23f2-1d0d-4c85-b998-e926655b20d0}</destination>
|
||||
<destination>{6b85461f-a2a8-4bb5-83de-62d980e1baf7}</destination>
|
||||
<destination>{049ddaca-4a26-410c-941c-094866c97607}</destination>
|
||||
<destination>{18dada78-f7e3-455a-8a45-44ae3560e047}</destination>
|
||||
<destination>{a7135186-4015-4a07-b303-aee20d593312}</destination>
|
||||
<destination>{f485f8e9-e7b3-4859-bb19-592b70aab835}</destination>
|
||||
<destination>{052757d9-e44c-41e1-ab5f-2573885b6208}</destination>
|
||||
<destination>{be44b0bd-536d-4e7b-9914-87c5bb3a6837}</destination>
|
||||
<destination>{7259f19c-8b06-46e4-af4e-e27d4ae74c36}</destination>
|
||||
<destination>{030d57a9-35b6-451e-918b-118ca5844b54}</destination>
|
||||
<destination>{d693f8cc-ce4b-4124-844e-fde0c339673e}</destination>
|
||||
<destination>{6bb6363e-f881-4230-9acb-2407f4258d34}</destination>
|
||||
<destination>{e75bc8b4-271a-40ac-9b1a-53ed177ed5d6}</destination>
|
||||
<destination>{11527f70-7165-4a6a-8817-ed463613bea1}</destination>
|
||||
<destination>{f2a72ab4-eff9-40d6-a241-8c8345c00c2b}</destination>
|
||||
<destination>{ef0fab44-5345-4b8a-b0ff-7c98002dfdd8}</destination>
|
||||
<destination>{f7787be7-ac7d-4314-ab11-b8115207c43a}</destination>
|
||||
<destination>{a7f1f39b-d2d7-4104-9467-0b25bcac3f70}</destination>
|
||||
<destination>{748ed53b-d68e-423a-96b5-c0fa722a250b}</destination>
|
||||
<destination>{167b29d6-a355-40df-b14f-cfcebe728ad8}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{6f272ff9-9b20-4dcc-8a44-a8c8eb02f93d}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ae658f09-3d92-4ec4-9ab8-22f7920bbb74}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{17386fe7-07b8-498a-bd5b-6141e39cee95}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{21e5271d-99de-407e-8b4b-004d94143126}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2f025cac-d10e-403d-8983-05e822fbb69a}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a5fad757-a054-469d-a532-d5b92513e11a}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{54c9792f-b7fb-4ea7-8cf7-eb6cde961201}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8147476a-7366-441a-a6d9-e249bbba1278}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{126732ce-5df5-440c-8529-3d1ccf3faf6b}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b57ed780-744b-45a6-b30a-ee061131ba44}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d75d6224-53be-4480-9f25-57d27e68096c}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e2cb62ac-d5d9-4f41-8488-64cc16a5f8e2}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4573aed2-b838-4bfc-9090-fe9dccc0c049}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{539d7a56-fdfb-4f68-9e95-bb4e38608f81}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{eebf7bca-abe0-4e52-9bd1-3239133d057a}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{819566e4-2c39-46f0-898f-34c8fa368d9d}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a6ca23f2-1d0d-4c85-b998-e926655b20d0}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6b85461f-a2a8-4bb5-83de-62d980e1baf7}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{049ddaca-4a26-410c-941c-094866c97607}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.819999993</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{18dada78-f7e3-455a-8a45-44ae3560e047}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a7135186-4015-4a07-b303-aee20d593312}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f485f8e9-e7b3-4859-bb19-592b70aab835}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{052757d9-e44c-41e1-ab5f-2573885b6208}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{be44b0bd-536d-4e7b-9914-87c5bb3a6837}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7259f19c-8b06-46e4-af4e-e27d4ae74c36}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{030d57a9-35b6-451e-918b-118ca5844b54}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d693f8cc-ce4b-4124-844e-fde0c339673e}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6bb6363e-f881-4230-9acb-2407f4258d34}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e75bc8b4-271a-40ac-9b1a-53ed177ed5d6}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{11527f70-7165-4a6a-8817-ed463613bea1}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f2a72ab4-eff9-40d6-a241-8c8345c00c2b}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ef0fab44-5345-4b8a-b0ff-7c98002dfdd8}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f7787be7-ac7d-4314-ab11-b8115207c43a}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a7f1f39b-d2d7-4104-9467-0b25bcac3f70}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{748ed53b-d68e-423a-96b5-c0fa722a250b}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{167b29d6-a355-40df-b14f-cfcebe728ad8}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>DoorsClosing</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{10599e26-82f2-47e5-9e3a-1b7ceae11d41}</destination>
|
||||
@@ -80,7 +80,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{1a2d59f7-a341-4de0-8c72-72a43c7fe2db}">
|
||||
<property name="volume">
|
||||
<value>2</value>
|
||||
<value>4.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{6b06f052-46cb-4b8a-a574-4c6331d1ddd9}</destination>
|
||||
@@ -113,7 +113,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{47480082-8e13-4533-ae2b-0fcd647fc89e}">
|
||||
<property name="volume">
|
||||
<value>8</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -131,8 +131,8 @@
|
||||
<object class="MixerBusEffectChain" id="{6b06f052-46cb-4b8a-a574-4c6331d1ddd9}">
|
||||
<relationship name="effects">
|
||||
<destination>{c3a7ce55-63eb-4cc7-98b1-7a978ef7afdf}</destination>
|
||||
<destination>{53f35ea8-3da8-4f7d-a58a-33efe4c89a81}</destination>
|
||||
<destination>{52794ca6-9ad6-48fb-b2c4-669b495948cc}</destination>
|
||||
<destination>{a99fc7d2-1295-4be4-bb3a-aa1fb9849354}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{372833ac-c82c-4020-8095-87f572d9cdcd}" />
|
||||
@@ -167,7 +167,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{dce3ab3c-0ac1-47e0-a1cb-8d61e71a25b7}" />
|
||||
<object class="MixerBusFader" id="{c3a7ce55-63eb-4cc7-98b1-7a978ef7afdf}" />
|
||||
<object class="SpatialiserEffect" id="{53f35ea8-3da8-4f7d-a58a-33efe4c89a81}" />
|
||||
<object class="MultibandEqEffect" id="{52794ca6-9ad6-48fb-b2c4-669b495948cc}">
|
||||
<property name="filterTypeA">
|
||||
<value>9</value>
|
||||
@@ -212,6 +211,11 @@
|
||||
<value>-4.32751083</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{a99fc7d2-1295-4be4-bb3a-aa1fb9849354}">
|
||||
<relationship name="plugin">
|
||||
<destination>{5644b24f-c252-489c-83c0-df5add472b9f}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{e399f339-0cd1-4127-94c5-53101cfd1e36}">
|
||||
<property name="position">
|
||||
<value>5.2000000000000002</value>
|
||||
@@ -232,4 +236,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{59012752-968b-4eed-bc3b-253d457e6d0b}" />
|
||||
<object class="Plugin" id="{5644b24f-c252-489c-83c0-df5add472b9f}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{92ed6e6e-b053-4b41-a70d-a0327cccaaf2}</destination>
|
||||
<destination>{5b041172-61ab-4789-8af2-186b9933c57f}</destination>
|
||||
<destination>{f3b2321b-3a81-4809-82f0-82b039e2bde3}</destination>
|
||||
<destination>{1c689643-cb7c-412e-844e-8d876153b932}</destination>
|
||||
<destination>{b0abbbd5-d8aa-4aea-b9a1-bef3e690a721}</destination>
|
||||
<destination>{e14c2291-6a92-4c87-9e1c-16fae7d46c6d}</destination>
|
||||
<destination>{45a391eb-fa74-4161-884c-9c128e09d025}</destination>
|
||||
<destination>{683cabaa-01ee-4c1a-8e03-725f6f6ea705}</destination>
|
||||
<destination>{3adaa7b1-7a11-4e64-ae31-b28afd80f4eb}</destination>
|
||||
<destination>{e15c79a7-4e8f-4e45-8c9b-e5fcc33485d5}</destination>
|
||||
<destination>{31d9e865-f724-4e28-8413-0269f405f260}</destination>
|
||||
<destination>{86cf5acc-dc0b-401d-93ef-27b38f748f57}</destination>
|
||||
<destination>{a617d597-078d-4251-83a7-3baeaffdc370}</destination>
|
||||
<destination>{88f8ceb1-0977-42c6-a2e3-d943ff690c42}</destination>
|
||||
<destination>{9f79498b-732a-4cb8-9bad-27ac576648d3}</destination>
|
||||
<destination>{92698ddb-7b5c-4436-a7a4-60713de140ce}</destination>
|
||||
<destination>{17564877-f410-4765-884e-132c2774de3a}</destination>
|
||||
<destination>{45eafebf-7a1c-487b-a6b7-675ce1f3c84d}</destination>
|
||||
<destination>{f26fa020-918c-4ce9-b87a-af12187236f3}</destination>
|
||||
<destination>{3f4ad864-ac1d-4cd1-95cd-205cdc6070a6}</destination>
|
||||
<destination>{532274fc-f734-4149-b1bb-1079b8bae816}</destination>
|
||||
<destination>{3a175573-cf39-4e53-95cc-f2d0a1a9bfa1}</destination>
|
||||
<destination>{9d0f518f-feb7-4f13-9896-1839674f527c}</destination>
|
||||
<destination>{c8eda1eb-e7a6-4fdb-9129-589c25c25ef0}</destination>
|
||||
<destination>{d54854b5-cc24-446d-9a4e-0c19be0b94ec}</destination>
|
||||
<destination>{24807b9f-92a4-42d4-8df0-3027fe5ff7e9}</destination>
|
||||
<destination>{c26307dd-b135-44f9-bfec-51c551fe4993}</destination>
|
||||
<destination>{6cebbd1a-1462-48a7-9367-9002e06b0f30}</destination>
|
||||
<destination>{018450fc-8ecc-4de5-bd93-03a247e5d84b}</destination>
|
||||
<destination>{be1d47c5-d282-4434-b9c8-c40028dcf60f}</destination>
|
||||
<destination>{825e6a75-0ad6-4372-9cb1-9cc409e68554}</destination>
|
||||
<destination>{ad333bd8-c294-4c15-a1b8-ff970a4326ed}</destination>
|
||||
<destination>{6ee76d98-1556-4c79-b748-f3fb3001336d}</destination>
|
||||
<destination>{8fb87020-0013-415d-91a8-0759c52ed4ff}</destination>
|
||||
<destination>{5d411c64-fd2c-4572-b9a1-052378cc9870}</destination>
|
||||
<destination>{d52f199f-c594-4837-9cb5-16656bdcbac2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{92ed6e6e-b053-4b41-a70d-a0327cccaaf2}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{5b041172-61ab-4789-8af2-186b9933c57f}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f3b2321b-3a81-4809-82f0-82b039e2bde3}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1c689643-cb7c-412e-844e-8d876153b932}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b0abbbd5-d8aa-4aea-b9a1-bef3e690a721}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e14c2291-6a92-4c87-9e1c-16fae7d46c6d}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{45a391eb-fa74-4161-884c-9c128e09d025}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{683cabaa-01ee-4c1a-8e03-725f6f6ea705}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3adaa7b1-7a11-4e64-ae31-b28afd80f4eb}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e15c79a7-4e8f-4e45-8c9b-e5fcc33485d5}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{31d9e865-f724-4e28-8413-0269f405f260}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{86cf5acc-dc0b-401d-93ef-27b38f748f57}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a617d597-078d-4251-83a7-3baeaffdc370}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>4.4000001</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{88f8ceb1-0977-42c6-a2e3-d943ff690c42}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>9.60000038</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9f79498b-732a-4cb8-9bad-27ac576648d3}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{92698ddb-7b5c-4436-a7a4-60713de140ce}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{17564877-f410-4765-884e-132c2774de3a}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{45eafebf-7a1c-487b-a6b7-675ce1f3c84d}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f26fa020-918c-4ce9-b87a-af12187236f3}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.174999997</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3f4ad864-ac1d-4cd1-95cd-205cdc6070a6}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{532274fc-f734-4149-b1bb-1079b8bae816}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3a175573-cf39-4e53-95cc-f2d0a1a9bfa1}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9d0f518f-feb7-4f13-9896-1839674f527c}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c8eda1eb-e7a6-4fdb-9129-589c25c25ef0}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d54854b5-cc24-446d-9a4e-0c19be0b94ec}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{24807b9f-92a4-42d4-8df0-3027fe5ff7e9}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c26307dd-b135-44f9-bfec-51c551fe4993}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6cebbd1a-1462-48a7-9367-9002e06b0f30}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{018450fc-8ecc-4de5-bd93-03a247e5d84b}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{be1d47c5-d282-4434-b9c8-c40028dcf60f}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{825e6a75-0ad6-4372-9cb1-9cc409e68554}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ad333bd8-c294-4c15-a1b8-ff970a4326ed}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{6ee76d98-1556-4c79-b748-f3fb3001336d}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8fb87020-0013-415d-91a8-0759c52ed4ff}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5d411c64-fd2c-4572-b9a1-052378cc9870}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d52f199f-c594-4837-9cb5-16656bdcbac2}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ComputerNoise2</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{99009895-3de4-4e9e-a5fe-af629bed4d51}</destination>
|
||||
@@ -68,7 +68,7 @@
|
||||
<value>0.200000003</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>4.20000029</value>
|
||||
<value>4.19999981</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{1982fdaa-41f5-49e8-8213-0b95037d2a0b}" />
|
||||
@@ -133,7 +133,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{ec7cc9ea-6d64-4ca4-8f6c-a932a22b04d6}">
|
||||
<property name="volume">
|
||||
<value>-19</value>
|
||||
<value>-9</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -173,9 +173,9 @@
|
||||
<object class="MixerBusEffectChain" id="{84d4acc3-e4a4-425f-8b81-17f302092d79}">
|
||||
<relationship name="effects">
|
||||
<destination>{92c09064-fe43-4571-9b65-04a6ca73afd6}</destination>
|
||||
<destination>{d4d926bb-e774-4b05-be01-013885472369}</destination>
|
||||
<destination>{dd0d5d7e-a733-45e9-b86e-b56c7de776de}</destination>
|
||||
<destination>{560325ee-df17-45ac-961c-f5a914b20414}</destination>
|
||||
<destination>{5497dd9d-5232-4e19-b118-6eb4a5f2c6da}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{5c552a07-0b93-4ff6-81cc-50dac53eb717}" />
|
||||
@@ -198,7 +198,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{92c09064-fe43-4571-9b65-04a6ca73afd6}" />
|
||||
<object class="SpatialiserEffect" id="{d4d926bb-e774-4b05-be01-013885472369}" />
|
||||
<object class="ThreeEQEffect" id="{dd0d5d7e-a733-45e9-b86e-b56c7de776de}">
|
||||
<property name="lowGain">
|
||||
<value>-5</value>
|
||||
@@ -227,13 +226,18 @@
|
||||
<destination>{5a042b91-1cea-4a0d-b1c8-4c50bb414b50}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{5497dd9d-5232-4e19-b118-6eb4a5f2c6da}">
|
||||
<relationship name="plugin">
|
||||
<destination>{788d3add-c93b-46b7-acdb-d9fe0a06f634}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{1d58402b-a3f7-4639-82f0-0149b2780191}" />
|
||||
<object class="AutomationPoint" id="{1e73dbe4-19a2-43a9-8188-7b766d1adad6}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>3</value>
|
||||
<value>5.00000381</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{8aa7070f-1793-4bb1-995c-2cc7b0126c8d}">
|
||||
@@ -241,7 +245,7 @@
|
||||
<value>0.99891067538126377</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-5.00000381</value>
|
||||
<value>-3</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{9ecd961d-0670-474f-9572-d2f037ecf3a4}">
|
||||
@@ -249,7 +253,7 @@
|
||||
<value>0.2510893246187364</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1.00000381</value>
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{4214f9ed-7560-4cad-882c-20fca2a6d3c3}">
|
||||
@@ -257,7 +261,7 @@
|
||||
<value>0.15032679738562094</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.99999619</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Automator" id="{5a042b91-1cea-4a0d-b1c8-4c50bb414b50}">
|
||||
@@ -268,6 +272,49 @@
|
||||
<destination>{194d89e6-89a2-4d69-8fc7-68cd8fcfd899}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{788d3add-c93b-46b7-acdb-d9fe0a06f634}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{399e3fe1-62cf-4307-b20f-7b26db747e61}</destination>
|
||||
<destination>{de0c8dd8-f71d-429f-b9b4-7ef0a3979c97}</destination>
|
||||
<destination>{20371ca3-0e02-4b9c-80e7-4f60d440b6ea}</destination>
|
||||
<destination>{1fe54007-cee4-4556-ab25-ac2760ab5929}</destination>
|
||||
<destination>{e0c12880-4a3c-466c-93a3-ccb30925bacc}</destination>
|
||||
<destination>{e21233bd-b6de-460f-b350-b068ccd294d4}</destination>
|
||||
<destination>{4ea6b5b3-145c-429b-a41c-c4503cda8307}</destination>
|
||||
<destination>{f6921570-304c-407f-9a49-ba17e34c301a}</destination>
|
||||
<destination>{3d9b570b-e141-4a03-9370-b2dcb7f40016}</destination>
|
||||
<destination>{159cb522-a7ce-4eb2-b4a8-d7ddfab71f75}</destination>
|
||||
<destination>{9418c767-95f9-4bd4-a56c-12781b20efd5}</destination>
|
||||
<destination>{a70ca1ab-bf97-4853-acbf-d9832c16d2be}</destination>
|
||||
<destination>{f50a8734-5445-4bbc-a69f-2102aff664cd}</destination>
|
||||
<destination>{92cc795c-f848-4921-8d96-ebdea316ba31}</destination>
|
||||
<destination>{b9b83a07-31ea-4a19-9766-02ff4715e6b1}</destination>
|
||||
<destination>{21a0c6b9-abc4-4cfc-99ed-0c68054c9c01}</destination>
|
||||
<destination>{37c80cb8-e562-4276-a29a-cae4d931d4e8}</destination>
|
||||
<destination>{d07d350e-2463-4051-bd48-0e5f2bc3c027}</destination>
|
||||
<destination>{12b1093e-64d7-40ea-975a-901f59652d0d}</destination>
|
||||
<destination>{9a2f554b-16e3-4f88-8c23-5b9af1bc0f97}</destination>
|
||||
<destination>{58481849-eb24-4c0e-a309-44bc88867c2e}</destination>
|
||||
<destination>{7b430f88-0a0a-448f-a078-1f5a9574ea31}</destination>
|
||||
<destination>{75fbffe7-04d0-4094-b9fc-9429f3f1f1ac}</destination>
|
||||
<destination>{0dc72a45-0dcf-4af6-973c-85b18c04965f}</destination>
|
||||
<destination>{3d5a1b1b-b000-4221-be2d-d8d63bea3c1f}</destination>
|
||||
<destination>{5de54f20-ed83-4b7b-9698-fe0729bb8933}</destination>
|
||||
<destination>{e5fa5b1d-7a4d-4f6f-b6f9-511c79d4a017}</destination>
|
||||
<destination>{b6243b86-9a5c-469c-93ba-0b250b766fbc}</destination>
|
||||
<destination>{784c9c44-02ae-46ae-a784-dbd6c7916949}</destination>
|
||||
<destination>{1859a383-1b90-4e59-9e02-87ffae122135}</destination>
|
||||
<destination>{f57ece56-4684-425b-ade3-18357c6e99f6}</destination>
|
||||
<destination>{3350fbec-4982-4a50-9491-06ece8b9aba8}</destination>
|
||||
<destination>{da0c44d0-9277-4c93-9ecd-318fea25cd93}</destination>
|
||||
<destination>{a1f02d8e-ae3d-41fa-a647-0aac767e6165}</destination>
|
||||
<destination>{b4b3ab6f-e009-4b60-9741-aca893cc1865}</destination>
|
||||
<destination>{9e9bb4f4-9f60-4772-a3f3-d0a287365526}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{194d89e6-89a2-4d69-8fc7-68cd8fcfd899}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -277,6 +324,406 @@
|
||||
<destination>{9e147650-3959-4c6e-a5bd-d128123417bb}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{399e3fe1-62cf-4307-b20f-7b26db747e61}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{de0c8dd8-f71d-429f-b9b4-7ef0a3979c97}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{20371ca3-0e02-4b9c-80e7-4f60d440b6ea}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1fe54007-cee4-4556-ab25-ac2760ab5929}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e0c12880-4a3c-466c-93a3-ccb30925bacc}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e21233bd-b6de-460f-b350-b068ccd294d4}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4ea6b5b3-145c-429b-a41c-c4503cda8307}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f6921570-304c-407f-9a49-ba17e34c301a}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3d9b570b-e141-4a03-9370-b2dcb7f40016}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{159cb522-a7ce-4eb2-b4a8-d7ddfab71f75}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9418c767-95f9-4bd4-a56c-12781b20efd5}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a70ca1ab-bf97-4853-acbf-d9832c16d2be}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f50a8734-5445-4bbc-a69f-2102aff664cd}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.200000003</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{92cc795c-f848-4921-8d96-ebdea316ba31}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>4.19999981</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b9b83a07-31ea-4a19-9766-02ff4715e6b1}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{21a0c6b9-abc4-4cfc-99ed-0c68054c9c01}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{37c80cb8-e562-4276-a29a-cae4d931d4e8}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d07d350e-2463-4051-bd48-0e5f2bc3c027}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{12b1093e-64d7-40ea-975a-901f59652d0d}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9a2f554b-16e3-4f88-8c23-5b9af1bc0f97}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{58481849-eb24-4c0e-a309-44bc88867c2e}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{7b430f88-0a0a-448f-a078-1f5a9574ea31}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{75fbffe7-04d0-4094-b9fc-9429f3f1f1ac}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0dc72a45-0dcf-4af6-973c-85b18c04965f}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3d5a1b1b-b000-4221-be2d-d8d63bea3c1f}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5de54f20-ed83-4b7b-9698-fe0729bb8933}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e5fa5b1d-7a4d-4f6f-b6f9-511c79d4a017}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b6243b86-9a5c-469c-93ba-0b250b766fbc}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{784c9c44-02ae-46ae-a784-dbd6c7916949}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1859a383-1b90-4e59-9e02-87ffae122135}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f57ece56-4684-425b-ade3-18357c6e99f6}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3350fbec-4982-4a50-9491-06ece8b9aba8}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{da0c44d0-9277-4c93-9ecd-318fea25cd93}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a1f02d8e-ae3d-41fa-a647-0aac767e6165}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b4b3ab6f-e009-4b60-9741-aca893cc1865}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{9e9bb4f4-9f60-4772-a3f3-d0a287365526}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{a24d2892-4a44-49f7-98ec-d9a79c124d43}">
|
||||
<property name="position">
|
||||
<value>0.0016339869281045754</value>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>Robotont</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{492f1f1e-6836-4f89-90a3-c9b795482c9f}</destination>
|
||||
@@ -72,7 +72,7 @@
|
||||
<value>4.4000001</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>8.40000057</value>
|
||||
<value>8.39999962</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{168d552a-719d-443e-9cd5-3eea91bf3af0}" />
|
||||
@@ -168,7 +168,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{516d0e7b-90dc-472f-8c81-e74bfee15557}">
|
||||
<property name="volume">
|
||||
<value>-27</value>
|
||||
<value>-20</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -211,8 +211,8 @@
|
||||
<object class="MixerBusEffectChain" id="{0ee94ee7-173e-4b19-88eb-e557bc685af4}">
|
||||
<relationship name="effects">
|
||||
<destination>{899880ec-37f3-47c4-9f29-02d7a53dd77e}</destination>
|
||||
<destination>{a3c7f9a6-1f2c-4a4d-95c1-c5dda21e7676}</destination>
|
||||
<destination>{9b0db4d4-ee80-4aab-ad48-fe6fe925cb68}</destination>
|
||||
<destination>{026995b5-fcd7-46bb-99eb-05210cc14d32}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{c55b4ca9-0ba4-4367-af8f-1e9c69d44770}" />
|
||||
@@ -270,7 +270,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{899880ec-37f3-47c4-9f29-02d7a53dd77e}" />
|
||||
<object class="SpatialiserEffect" id="{a3c7f9a6-1f2c-4a4d-95c1-c5dda21e7676}" />
|
||||
<object class="MultibandEqEffect" id="{9b0db4d4-ee80-4aab-ad48-fe6fe925cb68}">
|
||||
<property name="frequencyA">
|
||||
<value>18531.3105</value>
|
||||
@@ -282,6 +281,11 @@
|
||||
<destination>{ef77220d-a7d7-4d54-8dcf-944b78bb35e6}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{026995b5-fcd7-46bb-99eb-05210cc14d32}">
|
||||
<relationship name="plugin">
|
||||
<destination>{75f9361f-37e9-4d46-9e70-31b760d3e7bf}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{708784d7-20b5-4851-8662-0f31698c1ede}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -377,6 +381,49 @@
|
||||
<destination>{c34288de-cc2a-4707-8d91-cb28c5aaa82a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{75f9361f-37e9-4d46-9e70-31b760d3e7bf}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{98ddf2b1-daaf-4c0a-a830-18a005b7f728}</destination>
|
||||
<destination>{ea5291d0-3487-47a5-bf5f-c184a3826839}</destination>
|
||||
<destination>{f8239a8d-1102-4f28-a1da-791da21ed29d}</destination>
|
||||
<destination>{db7b0fb3-8cca-4c2f-93c3-80766c2955ad}</destination>
|
||||
<destination>{275b9349-d2fe-46b2-a894-5457bec46c5e}</destination>
|
||||
<destination>{a1ad5994-c708-4d62-9413-d08de7f42ca6}</destination>
|
||||
<destination>{b47110d2-b467-43e6-9e65-b7653fba044b}</destination>
|
||||
<destination>{d7478f3d-9c0f-4784-9009-fd4e8a65cd85}</destination>
|
||||
<destination>{5667498e-3884-41fe-92a8-8a6dce7d8ca0}</destination>
|
||||
<destination>{04382f0d-7246-49fe-b665-b2f1b5a05a00}</destination>
|
||||
<destination>{f02494fb-c726-4dd2-b488-bad82bbf451b}</destination>
|
||||
<destination>{ced966ac-1eb6-4c39-852e-4fffa152361a}</destination>
|
||||
<destination>{0f314ef7-6d81-4048-a2c3-781ab8debb66}</destination>
|
||||
<destination>{e402d6fb-affc-487e-8ddd-360db945fc1a}</destination>
|
||||
<destination>{f98a5726-78b0-4067-a6bb-f9b56b492748}</destination>
|
||||
<destination>{bafeecf3-6026-4fc9-be1f-80d161623c7f}</destination>
|
||||
<destination>{09e860ea-e480-47ed-9f98-1719b9f01fe9}</destination>
|
||||
<destination>{15499328-d0e7-4fcb-9fd7-d9633d6c1c95}</destination>
|
||||
<destination>{8f5b83bd-ce28-4a07-8ca8-eca1969dde85}</destination>
|
||||
<destination>{ff3ffb35-d459-4042-bb49-05eb431c0079}</destination>
|
||||
<destination>{2901c0aa-e187-4054-8790-fb9d25c6c24d}</destination>
|
||||
<destination>{73340c55-c1db-44f6-961d-9c6134a77dae}</destination>
|
||||
<destination>{5b4405b9-f684-4985-982d-314fb39abbde}</destination>
|
||||
<destination>{96e3afe9-69a1-41d7-8850-1722af91fb26}</destination>
|
||||
<destination>{5791d12f-d6f0-491a-b486-a130d6796eed}</destination>
|
||||
<destination>{70fdf507-3d6f-4386-bd7a-1eaf0bc464a3}</destination>
|
||||
<destination>{762a90cb-4df2-4666-94b9-82056303ece9}</destination>
|
||||
<destination>{8869718f-dc69-4efe-8526-94dcaff261ec}</destination>
|
||||
<destination>{f17ddbb8-8350-439f-8770-85cc96b1af5a}</destination>
|
||||
<destination>{fd745a0a-e279-4bad-bb63-fd40467b1d95}</destination>
|
||||
<destination>{545b2c6e-273d-43f2-83ae-e55ae229cd94}</destination>
|
||||
<destination>{63034dc1-ba12-4f63-a452-74fa1ce3e2e1}</destination>
|
||||
<destination>{577852b6-3646-433f-8b66-74fe2e5aaadb}</destination>
|
||||
<destination>{e73464d8-e44e-4d48-9442-c1ec10c02986}</destination>
|
||||
<destination>{6e2d86e2-fec2-4f36-875e-ea5e2e28178a}</destination>
|
||||
<destination>{fd9cbad2-e57f-4ca9-aa04-a3f90b99f6a8}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{c34288de-cc2a-4707-8d91-cb28c5aaa82a}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -386,6 +433,406 @@
|
||||
<destination>{9d286908-f264-4110-b701-234e12176f12}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{98ddf2b1-daaf-4c0a-a830-18a005b7f728}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ea5291d0-3487-47a5-bf5f-c184a3826839}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f8239a8d-1102-4f28-a1da-791da21ed29d}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{db7b0fb3-8cca-4c2f-93c3-80766c2955ad}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{275b9349-d2fe-46b2-a894-5457bec46c5e}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a1ad5994-c708-4d62-9413-d08de7f42ca6}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b47110d2-b467-43e6-9e65-b7653fba044b}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d7478f3d-9c0f-4784-9009-fd4e8a65cd85}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5667498e-3884-41fe-92a8-8a6dce7d8ca0}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{04382f0d-7246-49fe-b665-b2f1b5a05a00}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f02494fb-c726-4dd2-b488-bad82bbf451b}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ced966ac-1eb6-4c39-852e-4fffa152361a}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0f314ef7-6d81-4048-a2c3-781ab8debb66}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>4.4000001</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e402d6fb-affc-487e-8ddd-360db945fc1a}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>8.39999962</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f98a5726-78b0-4067-a6bb-f9b56b492748}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{bafeecf3-6026-4fc9-be1f-80d161623c7f}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{09e860ea-e480-47ed-9f98-1719b9f01fe9}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{15499328-d0e7-4fcb-9fd7-d9633d6c1c95}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8f5b83bd-ce28-4a07-8ca8-eca1969dde85}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ff3ffb35-d459-4042-bb49-05eb431c0079}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2901c0aa-e187-4054-8790-fb9d25c6c24d}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{73340c55-c1db-44f6-961d-9c6134a77dae}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5b4405b9-f684-4985-982d-314fb39abbde}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{96e3afe9-69a1-41d7-8850-1722af91fb26}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5791d12f-d6f0-491a-b486-a130d6796eed}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{70fdf507-3d6f-4386-bd7a-1eaf0bc464a3}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{762a90cb-4df2-4666-94b9-82056303ece9}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8869718f-dc69-4efe-8526-94dcaff261ec}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f17ddbb8-8350-439f-8770-85cc96b1af5a}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fd745a0a-e279-4bad-bb63-fd40467b1d95}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{545b2c6e-273d-43f2-83ae-e55ae229cd94}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{63034dc1-ba12-4f63-a452-74fa1ce3e2e1}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{577852b6-3646-433f-8b66-74fe2e5aaadb}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e73464d8-e44e-4d48-9442-c1ec10c02986}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6e2d86e2-fec2-4f36-875e-ea5e2e28178a}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{fd9cbad2-e57f-4ca9-aa04-a3f90b99f6a8}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{79b3df26-3c14-4b93-b831-b010800e8efd}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
|
||||
@@ -82,9 +82,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{bf293669-c192-4c16-b3eb-e633e8a61947}">
|
||||
<property name="volume">
|
||||
<value>-1.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{c8e756d8-4aa5-4827-968e-a6a8faf6e51f}</destination>
|
||||
</relationship>
|
||||
@@ -110,9 +107,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{b2d9dad5-d297-4cd2-8ddb-c270ab8097d3}">
|
||||
<property name="volume">
|
||||
<value>-2.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
@@ -143,9 +137,8 @@
|
||||
<object class="MixerBusEffectChain" id="{c8e756d8-4aa5-4827-968e-a6a8faf6e51f}">
|
||||
<relationship name="effects">
|
||||
<destination>{46ea035a-5885-4b78-b9a0-fdc436e160f9}</destination>
|
||||
<destination>{6f123a40-1bab-452c-ad98-bc1f3c4f63a9}</destination>
|
||||
<destination>{24ddcf0f-b660-400b-9b8a-8c033a627f6e}</destination>
|
||||
<destination>{a638b8d1-a675-46bb-9d40-69f7d05c3f29}</destination>
|
||||
<destination>{bfd0a255-cb03-4ba5-b096-03309dd9a4b5}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{923767e9-1910-4196-8b93-7f396ed4e055}" />
|
||||
@@ -157,7 +150,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{73b7117b-4398-4358-beca-5aea810bd3bd}" />
|
||||
<object class="MixerBusFader" id="{46ea035a-5885-4b78-b9a0-fdc436e160f9}" />
|
||||
<object class="SpatialiserEffect" id="{6f123a40-1bab-452c-ad98-bc1f3c4f63a9}" />
|
||||
<object class="ThreeEQEffect" id="{24ddcf0f-b660-400b-9b8a-8c033a627f6e}">
|
||||
<property name="lowGain">
|
||||
<value>-14</value>
|
||||
@@ -169,75 +161,74 @@
|
||||
<value>2600</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{a638b8d1-a675-46bb-9d40-69f7d05c3f29}">
|
||||
<property name="bypass">
|
||||
<value>true</value>
|
||||
</property>
|
||||
<object class="PluginEffect" id="{bfd0a255-cb03-4ba5-b096-03309dd9a4b5}">
|
||||
<relationship name="plugin">
|
||||
<destination>{1fcad231-89bc-4362-a0fa-482565dd94f1}</destination>
|
||||
<destination>{4518dbf8-f87f-40da-b8ec-a50683e20f65}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{ca40c3e3-f44a-4ac2-b033-f8e23bf582a3}" />
|
||||
<object class="Plugin" id="{1fcad231-89bc-4362-a0fa-482565dd94f1}">
|
||||
<object class="Plugin" id="{4518dbf8-f87f-40da-b8ec-a50683e20f65}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{500e1ee3-dae7-4101-b369-20b6adb556d8}</destination>
|
||||
<destination>{7e024af4-4df7-4d29-94c8-17d814cb824c}</destination>
|
||||
<destination>{7fe8fd66-2ffd-4037-a330-89e4332a522f}</destination>
|
||||
<destination>{1b9b1380-11aa-49a4-8f8e-89ce4e87dafc}</destination>
|
||||
<destination>{d528d438-bca8-4b8a-b67d-8538a2fecddc}</destination>
|
||||
<destination>{4edbb63b-5039-4be0-8c08-0284b60cb2ea}</destination>
|
||||
<destination>{8b0cc793-5a3c-4128-963c-38c775f9bec6}</destination>
|
||||
<destination>{9d6daa49-f83f-4f51-bf67-e182f97d2900}</destination>
|
||||
<destination>{c3514cd3-87e1-4c82-815d-db25af588132}</destination>
|
||||
<destination>{c99fb1fe-44c8-48f4-b5a9-937e683350e8}</destination>
|
||||
<destination>{2c74feae-0491-4a28-ae9e-804dbadfff47}</destination>
|
||||
<destination>{64bfe217-ce5c-4d86-9af7-e0aea658bc5d}</destination>
|
||||
<destination>{3eaf9108-f22a-404e-b4f9-7596c1e7184e}</destination>
|
||||
<destination>{2f6928a0-66b1-46c1-b1d5-a03ccf567534}</destination>
|
||||
<destination>{1ed0cccc-b4a3-4b2c-9e58-faf661d7716d}</destination>
|
||||
<destination>{58fb8086-7761-4c28-ba36-e1295fb5ee81}</destination>
|
||||
<destination>{5df0ecb3-275a-4888-85c1-cc5bd66b88e8}</destination>
|
||||
<destination>{05d1038f-b192-4a36-a689-f429104470f9}</destination>
|
||||
<destination>{dc68b3ef-8771-4bea-82ff-f193d3725302}</destination>
|
||||
<destination>{16eb9d37-18bc-4839-a030-7e5bb76c9bb5}</destination>
|
||||
<destination>{0e47d029-f7d8-45ba-b075-40b4826cd019}</destination>
|
||||
<destination>{fad02b3d-4ce3-4f82-94c0-1ee6deb72439}</destination>
|
||||
<destination>{c4c5e1f1-35c3-427e-81e1-d16bd7da5e62}</destination>
|
||||
<destination>{eb5d3f6f-252a-4114-9c2c-55d8aee18f14}</destination>
|
||||
<destination>{6d258469-9a29-46b7-b964-dc5345b6cdf1}</destination>
|
||||
<destination>{9495c787-5974-4a4d-91e1-463e01d3158d}</destination>
|
||||
<destination>{e8ac320b-0fb1-4d80-be03-64212f81e3e1}</destination>
|
||||
<destination>{29a4fe05-96a4-434b-9d92-ce63b0a73277}</destination>
|
||||
<destination>{21921971-7e44-4879-a78e-34de22bf9571}</destination>
|
||||
<destination>{569836b2-2cc2-48ca-8181-0da6f49475ef}</destination>
|
||||
<destination>{babb67ba-0e47-4a57-b7f7-50c4d4418509}</destination>
|
||||
<destination>{8a3d17d8-5358-4ab4-a8cf-4816d300ebd2}</destination>
|
||||
<destination>{c2f5e0a0-c72f-489c-ac42-29fc8f1493fd}</destination>
|
||||
<destination>{dfbdf6f8-9e3f-4345-8537-71397b6e0a09}</destination>
|
||||
<destination>{714ff4b8-fd5d-4414-8344-b0c6f73c3edd}</destination>
|
||||
<destination>{1c1476cd-c80f-449e-ae23-f9ce69a00841}</destination>
|
||||
<destination>{7b0e7c81-67de-47c2-a187-7c78d1a15dd9}</destination>
|
||||
<destination>{642d8d52-0d04-4cda-885c-2a959fc07dbf}</destination>
|
||||
<destination>{1fbed14e-4387-4c0c-9c3e-230f6703985b}</destination>
|
||||
<destination>{c7906a2f-33da-47f3-99d4-9a195e34469a}</destination>
|
||||
<destination>{e6829d6d-9530-426c-a499-f15cb0a7722a}</destination>
|
||||
<destination>{ff191a26-e634-4a7e-b83b-e23a098cea36}</destination>
|
||||
<destination>{281c47d8-d325-42c0-bf8a-4a62cda6d4f5}</destination>
|
||||
<destination>{202af7db-4523-47a7-bd92-7129ba6dae22}</destination>
|
||||
<destination>{1e4a7717-2dc8-4b91-90c7-9a5618b6004e}</destination>
|
||||
<destination>{07bf50c8-a516-4c65-8556-c391d331096b}</destination>
|
||||
<destination>{02839c36-da72-4635-947a-5f76488f5ac9}</destination>
|
||||
<destination>{8363dd06-bdc9-46f1-9124-8444dd7b7075}</destination>
|
||||
<destination>{4f8108d6-05f6-458f-8ef9-2e23f5e898be}</destination>
|
||||
<destination>{517d8f6a-ae75-4a1b-b1a6-52f6fd1c36e1}</destination>
|
||||
<destination>{e1847214-2ea0-4e4a-b788-31f9ad1fd75b}</destination>
|
||||
<destination>{ad0de11c-ae53-4e85-b44a-98e41e850861}</destination>
|
||||
<destination>{39fc504a-4694-4403-bcd4-478f916869c3}</destination>
|
||||
<destination>{c63df1a9-5356-40f6-be1d-0d8fd8449dfc}</destination>
|
||||
<destination>{c8c03fc6-6d36-49be-9a14-fd49fb5d0494}</destination>
|
||||
<destination>{e645aa6a-c83a-49eb-a303-416f50cb55d0}</destination>
|
||||
<destination>{4870f21f-e2db-443f-ac35-80df0b6be841}</destination>
|
||||
<destination>{743888f7-27ee-45e7-adb7-bb4dc1d8e5a1}</destination>
|
||||
<destination>{a67d68aa-c5ec-4c80-bfeb-8b5f74684cc1}</destination>
|
||||
<destination>{17abcbd6-294c-4009-9629-07ca555eb9cc}</destination>
|
||||
<destination>{8f82cbdb-e576-46d3-8390-c7b52c36efd4}</destination>
|
||||
<destination>{348fb76f-541d-42f0-9c84-1d151a712a85}</destination>
|
||||
<destination>{cf025668-991d-4939-8bae-3d7ca115295c}</destination>
|
||||
<destination>{4bab8aac-3f80-48c5-a2d7-12244f6019c7}</destination>
|
||||
<destination>{687db043-6d6d-4e10-98bb-720d68a04daf}</destination>
|
||||
<destination>{cdfbaa21-6ae0-4c61-a97d-3dcd91149f03}</destination>
|
||||
<destination>{2f71c80c-c1f5-43cb-9c9f-ed06ef1bc174}</destination>
|
||||
<destination>{3a9e706e-b631-44ff-b4a6-1bc608a2c3f1}</destination>
|
||||
<destination>{7555c655-d40c-4363-96d9-d0788dded01e}</destination>
|
||||
<destination>{030ab11f-679c-45f0-98f7-97e3d8c20a0f}</destination>
|
||||
<destination>{f82221ee-fe27-4bb8-91f7-498a9edbd93f}</destination>
|
||||
<destination>{33e74ffc-c809-4006-a02f-7c68e355c5aa}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{500e1ee3-dae7-4101-b369-20b6adb556d8}">
|
||||
<object class="DataPluginParameter" id="{7b0e7c81-67de-47c2-a187-7c78d1a15dd9}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{7e024af4-4df7-4d29-94c8-17d814cb824c}">
|
||||
<object class="DataPluginParameter" id="{642d8d52-0d04-4cda-885c-2a959fc07dbf}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{7fe8fd66-2ffd-4037-a330-89e4332a522f}">
|
||||
<object class="IntPluginParameter" id="{1fbed14e-4387-4c0c-9c3e-230f6703985b}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
@@ -251,7 +242,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1b9b1380-11aa-49a4-8f8e-89ce4e87dafc}">
|
||||
<object class="IntPluginParameter" id="{c7906a2f-33da-47f3-99d4-9a195e34469a}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
@@ -265,12 +256,12 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d528d438-bca8-4b8a-b67d-8538a2fecddc}">
|
||||
<object class="IntPluginParameter" id="{e6829d6d-9530-426c-a499-f15cb0a7722a}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -279,7 +270,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4edbb63b-5039-4be0-8c08-0284b60cb2ea}">
|
||||
<object class="IntPluginParameter" id="{ff191a26-e634-4a7e-b83b-e23a098cea36}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
@@ -293,7 +284,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8b0cc793-5a3c-4128-963c-38c775f9bec6}">
|
||||
<object class="IntPluginParameter" id="{281c47d8-d325-42c0-bf8a-4a62cda6d4f5}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
@@ -307,7 +298,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{9d6daa49-f83f-4f51-bf67-e182f97d2900}">
|
||||
<object class="BoolPluginParameter" id="{202af7db-4523-47a7-bd92-7129ba6dae22}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
@@ -315,20 +306,20 @@
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c3514cd3-87e1-4c82-815d-db25af588132}">
|
||||
<object class="BoolPluginParameter" id="{1e4a7717-2dc8-4b91-90c7-9a5618b6004e}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c99fb1fe-44c8-48f4-b5a9-937e683350e8}">
|
||||
<object class="IntPluginParameter" id="{07bf50c8-a516-4c65-8556-c391d331096b}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -337,7 +328,7 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2c74feae-0491-4a28-ae9e-804dbadfff47}">
|
||||
<object class="FloatPluginParameter" id="{02839c36-da72-4635-947a-5f76488f5ac9}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
@@ -348,12 +339,12 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{64bfe217-ce5c-4d86-9af7-e0aea658bc5d}">
|
||||
<object class="IntPluginParameter" id="{8363dd06-bdc9-46f1-9124-8444dd7b7075}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>3</value>
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -362,18 +353,18 @@
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3eaf9108-f22a-404e-b4f9-7596c1e7184e}">
|
||||
<object class="FloatPluginParameter" id="{4f8108d6-05f6-458f-8ef9-2e23f5e898be}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>0.100000001</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2f6928a0-66b1-46c1-b1d5-a03ccf567534}">
|
||||
<object class="FloatPluginParameter" id="{517d8f6a-ae75-4a1b-b1a6-52f6fd1c36e1}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
@@ -384,7 +375,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1ed0cccc-b4a3-4b2c-9e58-faf661d7716d}">
|
||||
<object class="FloatPluginParameter" id="{e1847214-2ea0-4e4a-b788-31f9ad1fd75b}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
@@ -395,7 +386,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{58fb8086-7761-4c28-ba36-e1295fb5ee81}">
|
||||
<object class="FloatPluginParameter" id="{ad0de11c-ae53-4e85-b44a-98e41e850861}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
@@ -406,7 +397,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5df0ecb3-275a-4888-85c1-cc5bd66b88e8}">
|
||||
<object class="FloatPluginParameter" id="{39fc504a-4694-4403-bcd4-478f916869c3}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
@@ -417,7 +408,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{05d1038f-b192-4a36-a689-f429104470f9}">
|
||||
<object class="FloatPluginParameter" id="{c63df1a9-5356-40f6-be1d-0d8fd8449dfc}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
@@ -428,7 +419,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dc68b3ef-8771-4bea-82ff-f193d3725302}">
|
||||
<object class="FloatPluginParameter" id="{c8c03fc6-6d36-49be-9a14-fd49fb5d0494}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
@@ -439,18 +430,18 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{16eb9d37-18bc-4839-a030-7e5bb76c9bb5}">
|
||||
<object class="FloatPluginParameter" id="{e645aa6a-c83a-49eb-a303-416f50cb55d0}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0e47d029-f7d8-45ba-b075-40b4826cd019}">
|
||||
<object class="FloatPluginParameter" id="{4870f21f-e2db-443f-ac35-80df0b6be841}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
@@ -461,7 +452,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fad02b3d-4ce3-4f82-94c0-1ee6deb72439}">
|
||||
<object class="IntPluginParameter" id="{743888f7-27ee-45e7-adb7-bb4dc1d8e5a1}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
@@ -475,7 +466,7 @@
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c4c5e1f1-35c3-427e-81e1-d16bd7da5e62}">
|
||||
<object class="FloatPluginParameter" id="{a67d68aa-c5ec-4c80-bfeb-8b5f74684cc1}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
@@ -486,7 +477,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{eb5d3f6f-252a-4114-9c2c-55d8aee18f14}">
|
||||
<object class="FloatPluginParameter" id="{17abcbd6-294c-4009-9629-07ca555eb9cc}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
@@ -497,7 +488,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6d258469-9a29-46b7-b964-dc5345b6cdf1}">
|
||||
<object class="FloatPluginParameter" id="{8f82cbdb-e576-46d3-8390-c7b52c36efd4}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
@@ -508,7 +499,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9495c787-5974-4a4d-91e1-463e01d3158d}">
|
||||
<object class="FloatPluginParameter" id="{348fb76f-541d-42f0-9c84-1d151a712a85}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
@@ -519,7 +510,7 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e8ac320b-0fb1-4d80-be03-64212f81e3e1}">
|
||||
<object class="BoolPluginParameter" id="{cf025668-991d-4939-8bae-3d7ca115295c}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
@@ -527,7 +518,7 @@
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{29a4fe05-96a4-434b-9d92-ce63b0a73277}">
|
||||
<object class="FloatPluginParameter" id="{4bab8aac-3f80-48c5-a2d7-12244f6019c7}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
@@ -538,15 +529,15 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{21921971-7e44-4879-a78e-34de22bf9571}">
|
||||
<object class="BoolPluginParameter" id="{687db043-6d6d-4e10-98bb-720d68a04daf}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{569836b2-2cc2-48ca-8181-0da6f49475ef}">
|
||||
<object class="FloatPluginParameter" id="{cdfbaa21-6ae0-4c61-a97d-3dcd91149f03}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
@@ -557,15 +548,16 @@
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{babb67ba-0e47-4a57-b7f7-50c4d4418509}">
|
||||
<object class="DataPluginParameter" id="{2f71c80c-c1f5-43cb-9c9f-ed06ef1bc174}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8a3d17d8-5358-4ab4-a8cf-4816d300ebd2}">
|
||||
<object class="BoolPluginParameter" id="{3a9e706e-b631-44ff-b4a6-1bc608a2c3f1}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
@@ -573,15 +565,16 @@
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c2f5e0a0-c72f-489c-ac42-29fc8f1493fd}">
|
||||
<object class="DataPluginParameter" id="{7555c655-d40c-4363-96d9-d0788dded01e}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{dfbdf6f8-9e3f-4345-8537-71397b6e0a09}">
|
||||
<object class="IntPluginParameter" id="{030ab11f-679c-45f0-98f7-97e3d8c20a0f}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
@@ -595,7 +588,7 @@
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{714ff4b8-fd5d-4414-8344-b0c6f73c3edd}">
|
||||
<object class="IntPluginParameter" id="{f82221ee-fe27-4bb8-91f7-498a9edbd93f}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
@@ -609,7 +602,7 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{1c1476cd-c80f-449e-ae23-f9ce69a00841}">
|
||||
<object class="BoolPluginParameter" id="{33e74ffc-c809-4006-a02f-7c68e355c5aa}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>OnlyHum</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{5d87e2fb-50d7-435d-bcfa-207929c464ce}</destination>
|
||||
@@ -69,7 +69,7 @@
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{1fb9b144-3aba-4f27-adac-3209e96a12a3}">
|
||||
<property name="minimumDistance">
|
||||
<value>0.200000003</value>
|
||||
<value>0.300000012</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>7.80000019</value>
|
||||
@@ -112,7 +112,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
||||
<property name="volume">
|
||||
<value>-9</value>
|
||||
<value>-3.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
||||
@@ -262,8 +262,8 @@
|
||||
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
||||
<relationship name="effects">
|
||||
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
||||
<destination>{37b2067f-7fb5-4b09-b7b6-4a444510790f}</destination>
|
||||
<destination>{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}</destination>
|
||||
<destination>{38a8dcfd-4ef5-4d51-bb99-998928550eb6}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
|
||||
@@ -332,7 +332,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
||||
<object class="SpatialiserEffect" id="{37b2067f-7fb5-4b09-b7b6-4a444510790f}" />
|
||||
<object class="MultibandEqEffect" id="{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}">
|
||||
<property name="frequencyA">
|
||||
<value>19834.9668</value>
|
||||
@@ -344,6 +343,11 @@
|
||||
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{38a8dcfd-4ef5-4d51-bb99-998928550eb6}">
|
||||
<relationship name="plugin">
|
||||
<destination>{676d5667-e7ad-4c84-bb48-8a8eb04e02d8}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{9c5a515b-35dd-4601-89ac-9e74c5694f05}">
|
||||
<property name="position">
|
||||
<value>0.040000000000000008</value>
|
||||
@@ -430,6 +434,49 @@
|
||||
<destination>{dc3aae18-6666-4494-ba7c-5602bd0dd75d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{676d5667-e7ad-4c84-bb48-8a8eb04e02d8}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{ba7c2a39-24e5-436b-9957-cbad9ad1d0b0}</destination>
|
||||
<destination>{c102d300-32d7-4359-88c3-0bb8b3c368c4}</destination>
|
||||
<destination>{4865d338-e80c-463e-b392-f1f84850b452}</destination>
|
||||
<destination>{aa654157-6118-49a6-a890-6601f155e65f}</destination>
|
||||
<destination>{3c9e9600-10c2-4016-807b-635b305a0230}</destination>
|
||||
<destination>{1afdc5bb-4c86-4db1-bd11-be22466bf62d}</destination>
|
||||
<destination>{9afb8fb3-e6c1-485b-92ab-96912ea97e51}</destination>
|
||||
<destination>{46c13dfd-bbaa-40c4-a64d-7c19802a5d7a}</destination>
|
||||
<destination>{d5fc40ac-f0e9-420e-80ce-6487b255b38c}</destination>
|
||||
<destination>{5ef1d7ec-6efa-4374-a4c6-49a0b785c5e4}</destination>
|
||||
<destination>{0515726b-77e7-4e20-a98c-8c6a3b5d6f15}</destination>
|
||||
<destination>{75ca7efd-0821-47f2-ae93-3c26d142f81d}</destination>
|
||||
<destination>{6271270f-cc86-4bf2-b8a9-b428f91658a7}</destination>
|
||||
<destination>{2006d997-ebed-4362-8b0c-e3e807dd0f81}</destination>
|
||||
<destination>{9624a3c7-e1da-4f11-8e83-4cd7a5f26fbf}</destination>
|
||||
<destination>{ed36e92c-a7f9-4f90-a53d-bfdb2e07a23e}</destination>
|
||||
<destination>{738c9f56-ac02-4fb4-8812-39fe0ea5ddaf}</destination>
|
||||
<destination>{8784adc9-0807-458e-942d-0920f610a80e}</destination>
|
||||
<destination>{6e80b732-3b67-41cd-b28d-f954ff101eb8}</destination>
|
||||
<destination>{c85a7592-fb73-4b1d-b3fd-3da9372dea42}</destination>
|
||||
<destination>{b0dba3a0-86d1-402f-9027-093a6c6fb0d6}</destination>
|
||||
<destination>{704e5041-33da-48b3-8ce6-5bf94a4a3023}</destination>
|
||||
<destination>{1e9aa91f-db4e-4bda-9aec-1cd0e6ad729d}</destination>
|
||||
<destination>{03a805e1-fb07-4dc9-9b01-a6a4bdd05a35}</destination>
|
||||
<destination>{41806c0a-3f34-43f6-9e61-a19887ba6d97}</destination>
|
||||
<destination>{75d9e418-5783-4711-b6d5-0b5e8614a2fd}</destination>
|
||||
<destination>{e2e8faae-5bd6-4f5f-a72f-9d5111897bf0}</destination>
|
||||
<destination>{7fc78696-0f2f-40aa-864d-b77d8b5b5d38}</destination>
|
||||
<destination>{85d95716-0165-4b95-9592-90e2bee5ba65}</destination>
|
||||
<destination>{cd348048-04e0-4344-b652-c877f8641f08}</destination>
|
||||
<destination>{f2f65134-3453-44de-a641-efc4626599e8}</destination>
|
||||
<destination>{08625da0-d967-4331-85ea-178608dc683a}</destination>
|
||||
<destination>{bbc7e11f-2062-421f-8beb-11f036d1ede3}</destination>
|
||||
<destination>{0dd94c98-862e-427a-9d78-a40aa1603157}</destination>
|
||||
<destination>{73113a52-b18d-4377-843d-3da135618409}</destination>
|
||||
<destination>{ec1e3877-b606-4f4a-9888-12174126f814}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{dc3aae18-6666-4494-ba7c-5602bd0dd75d}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -440,6 +487,406 @@
|
||||
<destination>{2b19a1eb-cc11-4773-bccf-770b7f5b5b1d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ba7c2a39-24e5-436b-9957-cbad9ad1d0b0}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c102d300-32d7-4359-88c3-0bb8b3c368c4}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4865d338-e80c-463e-b392-f1f84850b452}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{aa654157-6118-49a6-a890-6601f155e65f}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3c9e9600-10c2-4016-807b-635b305a0230}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1afdc5bb-4c86-4db1-bd11-be22466bf62d}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9afb8fb3-e6c1-485b-92ab-96912ea97e51}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{46c13dfd-bbaa-40c4-a64d-7c19802a5d7a}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d5fc40ac-f0e9-420e-80ce-6487b255b38c}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5ef1d7ec-6efa-4374-a4c6-49a0b785c5e4}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0515726b-77e7-4e20-a98c-8c6a3b5d6f15}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{75ca7efd-0821-47f2-ae93-3c26d142f81d}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6271270f-cc86-4bf2-b8a9-b428f91658a7}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.200000003</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2006d997-ebed-4362-8b0c-e3e807dd0f81}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>7.80000019</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9624a3c7-e1da-4f11-8e83-4cd7a5f26fbf}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ed36e92c-a7f9-4f90-a53d-bfdb2e07a23e}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{738c9f56-ac02-4fb4-8812-39fe0ea5ddaf}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8784adc9-0807-458e-942d-0920f610a80e}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6e80b732-3b67-41cd-b28d-f954ff101eb8}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c85a7592-fb73-4b1d-b3fd-3da9372dea42}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b0dba3a0-86d1-402f-9027-093a6c6fb0d6}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{704e5041-33da-48b3-8ce6-5bf94a4a3023}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1e9aa91f-db4e-4bda-9aec-1cd0e6ad729d}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{03a805e1-fb07-4dc9-9b01-a6a4bdd05a35}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{41806c0a-3f34-43f6-9e61-a19887ba6d97}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{75d9e418-5783-4711-b6d5-0b5e8614a2fd}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e2e8faae-5bd6-4f5f-a72f-9d5111897bf0}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7fc78696-0f2f-40aa-864d-b77d8b5b5d38}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{85d95716-0165-4b95-9592-90e2bee5ba65}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cd348048-04e0-4344-b652-c877f8641f08}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f2f65134-3453-44de-a641-efc4626599e8}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{08625da0-d967-4331-85ea-178608dc683a}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{bbc7e11f-2062-421f-8beb-11f036d1ede3}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0dd94c98-862e-427a-9d78-a40aa1603157}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{73113a52-b18d-4377-843d-3da135618409}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ec1e3877-b606-4f4a-9888-12174126f814}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{40ab098e-d663-4bea-8377-1d2a61abf906}">
|
||||
<property name="position">
|
||||
<value>0.01</value>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>BowPullbackMax</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{53fe1a4d-3d20-465b-8604-8516be28d18b}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{11157870-d323-4e43-90d5-66ac5587644c}</destination>
|
||||
@@ -103,6 +103,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{4a102695-cdbc-4c91-9213-479e37d9c09f}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
@@ -119,7 +122,7 @@
|
||||
<object class="MixerBusEffectChain" id="{11157870-d323-4e43-90d5-66ac5587644c}">
|
||||
<relationship name="effects">
|
||||
<destination>{220e2ce0-f7e9-4619-aff3-befc50906f12}</destination>
|
||||
<destination>{61dbeb6f-ecba-4974-8776-78293806718e}</destination>
|
||||
<destination>{b941e682-185b-4f2f-a6f7-a1bfac80e279}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{af1e0bc6-86a7-442e-8a7f-fceba5e15012}" />
|
||||
@@ -131,6 +134,453 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{7f54b39a-ae9b-4c48-bac8-fb8380b42398}" />
|
||||
<object class="MixerBusFader" id="{220e2ce0-f7e9-4619-aff3-befc50906f12}" />
|
||||
<object class="SpatialiserEffect" id="{61dbeb6f-ecba-4974-8776-78293806718e}" />
|
||||
<object class="PluginEffect" id="{b941e682-185b-4f2f-a6f7-a1bfac80e279}">
|
||||
<relationship name="plugin">
|
||||
<destination>{04cbc591-2049-4fb2-91dd-833e1f797d46}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{0253dc73-e8c5-44d1-bf5f-fcf8ca2bcaf3}" />
|
||||
<object class="Plugin" id="{04cbc591-2049-4fb2-91dd-833e1f797d46}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{e1fda2dd-8f60-41e8-acc5-f2ca40046101}</destination>
|
||||
<destination>{f4e2a6b9-bd6a-4f96-97cc-ea7975356228}</destination>
|
||||
<destination>{6646670b-a76d-4213-94a0-c908bc19463c}</destination>
|
||||
<destination>{5615b716-9727-4dc0-9d0b-4ad2fc53d1b9}</destination>
|
||||
<destination>{064e9b3f-41a2-4def-b78c-e16705a37dc6}</destination>
|
||||
<destination>{a074d362-cc88-4efa-b491-0a79bf51967d}</destination>
|
||||
<destination>{fd129200-1610-4313-88b8-bacbe6a2d7d7}</destination>
|
||||
<destination>{626d40f8-d909-40d1-88c4-993320320606}</destination>
|
||||
<destination>{8275c21c-50b2-488b-9557-a53f750727a0}</destination>
|
||||
<destination>{128cdbaf-96d1-4747-a703-2d744d3fa908}</destination>
|
||||
<destination>{846abf0d-f5d4-4f99-96ac-867941620952}</destination>
|
||||
<destination>{6bd0fdf3-300c-4872-af7b-464098bf07c7}</destination>
|
||||
<destination>{b53f4aeb-70ff-423b-96b9-5de7ac722d35}</destination>
|
||||
<destination>{d00664b3-b095-4182-a8c6-a1abc8695476}</destination>
|
||||
<destination>{f7517b37-0307-4320-a86b-b943b7e50db0}</destination>
|
||||
<destination>{863b1bd9-da1f-4369-a23a-dc10f25d41d0}</destination>
|
||||
<destination>{1b4b9511-246b-4520-8bd1-9452922f592a}</destination>
|
||||
<destination>{69e92aa5-b57d-45b1-8813-68def1c56976}</destination>
|
||||
<destination>{3baefe35-be85-4de4-af86-cdf80467dfe2}</destination>
|
||||
<destination>{468fe794-310f-42a1-bb7a-89e3440d28da}</destination>
|
||||
<destination>{59e15e07-78de-4385-b2fe-632575e8481b}</destination>
|
||||
<destination>{a96bf625-f6ea-4766-8024-4a754493cf45}</destination>
|
||||
<destination>{2fea6ddc-6b92-4b87-af3c-8c9c05924bc8}</destination>
|
||||
<destination>{477527f3-c444-4dd4-909d-bb0bc7ef790f}</destination>
|
||||
<destination>{c477c516-fd37-4ae9-ae51-27f6cd9e2414}</destination>
|
||||
<destination>{42d9baff-6dd9-4fbc-88b0-f0b1bf045e53}</destination>
|
||||
<destination>{39845e01-34e7-4b25-af43-4e22d6690c7c}</destination>
|
||||
<destination>{446785b1-3fd4-4658-a3d9-1205b507fa3d}</destination>
|
||||
<destination>{aeeb8549-e17f-48a0-a3d3-df61b1eca290}</destination>
|
||||
<destination>{a49760d5-3ab3-475c-b633-c4a2d83481b8}</destination>
|
||||
<destination>{c2b40cff-1179-430a-9e54-31318e201862}</destination>
|
||||
<destination>{b87c5ef2-f17d-466d-b2c6-5c375fb18fd7}</destination>
|
||||
<destination>{1d3f5c76-2873-4c84-831e-ad1e4d8f207f}</destination>
|
||||
<destination>{9c93ce4b-c1b2-4cd2-b0d6-11528723e9d1}</destination>
|
||||
<destination>{2e663064-dc37-4357-bf3f-a3d91c00223c}</destination>
|
||||
<destination>{4de7386d-3183-474d-b5b9-ba3c91422750}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e1fda2dd-8f60-41e8-acc5-f2ca40046101}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f4e2a6b9-bd6a-4f96-97cc-ea7975356228}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6646670b-a76d-4213-94a0-c908bc19463c}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5615b716-9727-4dc0-9d0b-4ad2fc53d1b9}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{064e9b3f-41a2-4def-b78c-e16705a37dc6}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a074d362-cc88-4efa-b491-0a79bf51967d}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fd129200-1610-4313-88b8-bacbe6a2d7d7}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{626d40f8-d909-40d1-88c4-993320320606}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8275c21c-50b2-488b-9557-a53f750727a0}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{128cdbaf-96d1-4747-a703-2d744d3fa908}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{846abf0d-f5d4-4f99-96ac-867941620952}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6bd0fdf3-300c-4872-af7b-464098bf07c7}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b53f4aeb-70ff-423b-96b9-5de7ac722d35}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d00664b3-b095-4182-a8c6-a1abc8695476}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f7517b37-0307-4320-a86b-b943b7e50db0}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{863b1bd9-da1f-4369-a23a-dc10f25d41d0}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1b4b9511-246b-4520-8bd1-9452922f592a}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{69e92aa5-b57d-45b1-8813-68def1c56976}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3baefe35-be85-4de4-af86-cdf80467dfe2}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.24499999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{468fe794-310f-42a1-bb7a-89e3440d28da}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{59e15e07-78de-4385-b2fe-632575e8481b}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a96bf625-f6ea-4766-8024-4a754493cf45}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2fea6ddc-6b92-4b87-af3c-8c9c05924bc8}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{477527f3-c444-4dd4-909d-bb0bc7ef790f}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c477c516-fd37-4ae9-ae51-27f6cd9e2414}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{42d9baff-6dd9-4fbc-88b0-f0b1bf045e53}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{39845e01-34e7-4b25-af43-4e22d6690c7c}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{446785b1-3fd4-4658-a3d9-1205b507fa3d}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{aeeb8549-e17f-48a0-a3d3-df61b1eca290}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a49760d5-3ab3-475c-b633-c4a2d83481b8}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c2b40cff-1179-430a-9e54-31318e201862}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{b87c5ef2-f17d-466d-b2c6-5c375fb18fd7}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{1d3f5c76-2873-4c84-831e-ad1e4d8f207f}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9c93ce4b-c1b2-4cd2-b0d6-11528723e9d1}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2e663064-dc37-4357-bf3f-a3d91c00223c}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{4de7386d-3183-474d-b5b9-ba3c91422750}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>Hover</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -93,7 +93,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{0dea75da-15ee-4954-a6b6-06d02ecb54fe}">
|
||||
<property name="volume">
|
||||
<value>9</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{6aa72fe9-b31b-4501-91b0-1bf512d6e4fd}</destination>
|
||||
@@ -161,7 +161,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{f8799489-535c-4cb6-8d24-a0b2c9522d47}">
|
||||
<property name="volume">
|
||||
<value>6</value>
|
||||
<value>8.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 2</value>
|
||||
@@ -179,8 +179,8 @@
|
||||
<object class="MixerBusEffectChain" id="{6aa72fe9-b31b-4501-91b0-1bf512d6e4fd}">
|
||||
<relationship name="effects">
|
||||
<destination>{fe9db83e-ebf1-4bbf-8188-21cf95cbfecb}</destination>
|
||||
<destination>{def37d7a-24d1-435e-84ec-dfa7bd010c14}</destination>
|
||||
<destination>{c6552354-f50c-4c82-ae7b-742370f54dc5}</destination>
|
||||
<destination>{c5008820-9b2b-4f7d-9c38-352c6c1f3b7f}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{d03f8c9d-a33c-4474-b5e6-e1741e1b3fea}" />
|
||||
@@ -218,7 +218,6 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{fe9db83e-ebf1-4bbf-8188-21cf95cbfecb}" />
|
||||
<object class="SpatialiserEffect" id="{def37d7a-24d1-435e-84ec-dfa7bd010c14}" />
|
||||
<object class="MultibandEqEffect" id="{c6552354-f50c-4c82-ae7b-742370f54dc5}">
|
||||
<property name="filterTypeA">
|
||||
<value>0</value>
|
||||
@@ -251,6 +250,11 @@
|
||||
<value>8.15522099</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{c5008820-9b2b-4f7d-9c38-352c6c1f3b7f}">
|
||||
<relationship name="plugin">
|
||||
<destination>{85394a40-fd61-4f4d-a9ab-c5468eb89bf3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{86567622-eff2-4e65-b5cd-55c5cde8621b}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -291,4 +295,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{15bfe58e-f7b9-4219-b739-8e3cbb9633ef}" />
|
||||
<object class="Plugin" id="{85394a40-fd61-4f4d-a9ab-c5468eb89bf3}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{49fd3917-2bcb-4179-a68b-0ad82c4a2703}</destination>
|
||||
<destination>{06975f45-c488-4533-850f-9a3046f80713}</destination>
|
||||
<destination>{d00a13ba-6b52-43f3-9edf-d4ebe64e3db9}</destination>
|
||||
<destination>{3adb800b-24e2-4ac4-b2e4-e9f8babdc2bc}</destination>
|
||||
<destination>{3817fd82-d8e4-438c-9519-4665ed5f34e2}</destination>
|
||||
<destination>{f5ea3552-dc2c-4192-aa31-20f5c308b8f6}</destination>
|
||||
<destination>{254951c6-76f3-402f-b810-1515a140b03c}</destination>
|
||||
<destination>{2d15a6db-11c6-49aa-8710-429d7d933a20}</destination>
|
||||
<destination>{668583e8-3808-4ce8-9eea-ffa033c80ab1}</destination>
|
||||
<destination>{70cd52d2-c0b6-41dd-93e9-64728b9a0cea}</destination>
|
||||
<destination>{935c2acf-923e-42f0-9817-a04571777e84}</destination>
|
||||
<destination>{df849d6f-2b38-496f-bda6-db61bb16c1a2}</destination>
|
||||
<destination>{5fa3525d-ce90-44d5-8d00-355bc2ad493c}</destination>
|
||||
<destination>{d2b29785-2043-46b4-9610-73dcdde32d7d}</destination>
|
||||
<destination>{320578c1-e54c-4fd5-a0a2-2d3fcf2b5408}</destination>
|
||||
<destination>{8a64e3af-64c9-4578-83fb-47836dc56a2b}</destination>
|
||||
<destination>{8209b7ce-aa37-460f-8eb2-b7a6ea3fe7e5}</destination>
|
||||
<destination>{6ef9275d-b1ef-4e24-b3ff-5140c67f35cd}</destination>
|
||||
<destination>{7865da6c-9958-4c3c-bb7f-845561aeec55}</destination>
|
||||
<destination>{48b67aa7-6230-490d-84dd-4e4c6eef0a26}</destination>
|
||||
<destination>{bdeed943-da7c-42bd-8e58-b443e751830e}</destination>
|
||||
<destination>{795d7d7d-e9c8-4375-8f93-9a708a1a5507}</destination>
|
||||
<destination>{005b6362-06ad-4667-8b29-605d28bc57bf}</destination>
|
||||
<destination>{d6afc8b6-ad1d-447b-a7a1-1581c9613599}</destination>
|
||||
<destination>{7ba7042a-3f71-4d7f-9544-ef6a623a8557}</destination>
|
||||
<destination>{8d55b478-46f9-4438-be6b-2cddee009520}</destination>
|
||||
<destination>{94c1d80a-766b-4c0b-a6fc-10c3940f6310}</destination>
|
||||
<destination>{1bfdc33c-2878-4b7b-8f33-4fb93759b659}</destination>
|
||||
<destination>{da3e055b-773c-475a-bb2f-28bd15a1e827}</destination>
|
||||
<destination>{121426ad-4727-4f45-a047-6236106897ae}</destination>
|
||||
<destination>{41e226d0-e300-4726-8054-7d44f161cbfd}</destination>
|
||||
<destination>{ce0b2f29-8cad-42fb-9c04-aae3d5c65938}</destination>
|
||||
<destination>{7a100b1f-104f-4d0f-ab91-209a5c4fb720}</destination>
|
||||
<destination>{9e084ff3-3e9e-4d1a-8d5a-c38088b4d44d}</destination>
|
||||
<destination>{2c2335b6-00a4-41b5-a72b-ce0a027243e7}</destination>
|
||||
<destination>{44478e57-e2c3-41ff-8fc1-ebe1688964c1}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{49fd3917-2bcb-4179-a68b-0ad82c4a2703}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{06975f45-c488-4533-850f-9a3046f80713}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d00a13ba-6b52-43f3-9edf-d4ebe64e3db9}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3adb800b-24e2-4ac4-b2e4-e9f8babdc2bc}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3817fd82-d8e4-438c-9519-4665ed5f34e2}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f5ea3552-dc2c-4192-aa31-20f5c308b8f6}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{254951c6-76f3-402f-b810-1515a140b03c}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{2d15a6db-11c6-49aa-8710-429d7d933a20}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{668583e8-3808-4ce8-9eea-ffa033c80ab1}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{70cd52d2-c0b6-41dd-93e9-64728b9a0cea}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{935c2acf-923e-42f0-9817-a04571777e84}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{df849d6f-2b38-496f-bda6-db61bb16c1a2}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5fa3525d-ce90-44d5-8d00-355bc2ad493c}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d2b29785-2043-46b4-9610-73dcdde32d7d}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{320578c1-e54c-4fd5-a0a2-2d3fcf2b5408}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8a64e3af-64c9-4578-83fb-47836dc56a2b}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8209b7ce-aa37-460f-8eb2-b7a6ea3fe7e5}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6ef9275d-b1ef-4e24-b3ff-5140c67f35cd}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7865da6c-9958-4c3c-bb7f-845561aeec55}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.794999957</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{48b67aa7-6230-490d-84dd-4e4c6eef0a26}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{bdeed943-da7c-42bd-8e58-b443e751830e}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{795d7d7d-e9c8-4375-8f93-9a708a1a5507}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{005b6362-06ad-4667-8b29-605d28bc57bf}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d6afc8b6-ad1d-447b-a7a1-1581c9613599}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7ba7042a-3f71-4d7f-9544-ef6a623a8557}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8d55b478-46f9-4438-be6b-2cddee009520}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{94c1d80a-766b-4c0b-a6fc-10c3940f6310}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1bfdc33c-2878-4b7b-8f33-4fb93759b659}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{da3e055b-773c-475a-bb2f-28bd15a1e827}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{121426ad-4727-4f45-a047-6236106897ae}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{41e226d0-e300-4726-8054-7d44f161cbfd}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ce0b2f29-8cad-42fb-9c04-aae3d5c65938}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{7a100b1f-104f-4d0f-ab91-209a5c4fb720}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9e084ff3-3e9e-4d1a-8d5a-c38088b4d44d}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2c2335b6-00a4-41b5-a72b-ce0a027243e7}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{44478e57-e2c3-41ff-8fc1-ebe1688964c1}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>Sprayer</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{ddc32c09-2c24-49ac-ad42-6ad835514fc4}</destination>
|
||||
@@ -127,7 +127,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{9b5f73af-4ffb-43a8-a62e-ecc334924a73}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
<value>3.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{dd04184e-53f5-4216-b271-f17a4571bfdc}</destination>
|
||||
@@ -430,8 +430,8 @@
|
||||
<object class="MixerBusEffectChain" id="{dd04184e-53f5-4216-b271-f17a4571bfdc}">
|
||||
<relationship name="effects">
|
||||
<destination>{c38a3950-a0c4-4aae-b520-a5813b6ba3c8}</destination>
|
||||
<destination>{3ecb1997-40cf-4d35-994c-0a5497f49db8}</destination>
|
||||
<destination>{cfc6f69d-a368-4a8c-a6c8-7d12f7e682b6}</destination>
|
||||
<destination>{da82e65a-c072-4b00-b376-5665d72539db}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{de5c4cc0-7a42-4eeb-ac86-bbbf517fe68c}">
|
||||
@@ -614,7 +614,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{c38a3950-a0c4-4aae-b520-a5813b6ba3c8}" />
|
||||
<object class="SpatialiserEffect" id="{3ecb1997-40cf-4d35-994c-0a5497f49db8}" />
|
||||
<object class="MultibandEqEffect" id="{cfc6f69d-a368-4a8c-a6c8-7d12f7e682b6}">
|
||||
<property name="filterTypeA">
|
||||
<value>0</value>
|
||||
@@ -629,6 +628,11 @@
|
||||
<value>1.39374375</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{da82e65a-c072-4b00-b376-5665d72539db}">
|
||||
<relationship name="plugin">
|
||||
<destination>{28a44f2d-b89e-40c9-8fb0-32dc20883f29}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{b15a8dbc-cc92-4a39-aa2b-7fef4dd4241f}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -765,4 +769,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{cce1277f-7140-4fc6-adef-296fa74982b4}" />
|
||||
<object class="Plugin" id="{28a44f2d-b89e-40c9-8fb0-32dc20883f29}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{53fffb53-34de-44e8-bb18-2b50af546618}</destination>
|
||||
<destination>{f2f301a6-8a7a-417d-bb0a-d4f7bfe42742}</destination>
|
||||
<destination>{4dfe8dc7-9a29-4532-a64b-e24004579d5f}</destination>
|
||||
<destination>{2ba9768b-1471-4a47-bf16-de330db159b6}</destination>
|
||||
<destination>{6b4cc6d6-8f35-4436-9f19-a28f31eb6de1}</destination>
|
||||
<destination>{52f58dd3-ca26-4edb-8142-6a21f70f79e7}</destination>
|
||||
<destination>{ac8a8dd1-ebc6-4ba9-9a08-a2b02f2c1a7c}</destination>
|
||||
<destination>{b218cace-0f6d-4bdc-98cf-7fe6bf50b9f6}</destination>
|
||||
<destination>{164586ef-cc2b-4046-804c-3da07f5ec2be}</destination>
|
||||
<destination>{27eea673-b935-4c5e-aa71-422af9b42d5b}</destination>
|
||||
<destination>{48b7d5d8-2af8-4dab-8666-fc3589b84dde}</destination>
|
||||
<destination>{4ecbb34c-28f7-4231-8e9a-6a0f6aa7dd15}</destination>
|
||||
<destination>{0a15a61e-1b0c-4757-90f5-ff2f43c938eb}</destination>
|
||||
<destination>{7427cbe9-0a75-4491-9403-7e073925d462}</destination>
|
||||
<destination>{3062e1fb-d3cb-478a-84ce-2edf33dada8c}</destination>
|
||||
<destination>{67e14104-6905-4358-8233-af0590a257af}</destination>
|
||||
<destination>{26fe2ffe-348c-438a-a4ff-c8811ae43db1}</destination>
|
||||
<destination>{1cd57f29-44c1-43c8-a579-cdee78a6e4ef}</destination>
|
||||
<destination>{5c0f2bf2-81c0-47ba-99c8-baf333cc98a4}</destination>
|
||||
<destination>{67143558-0a95-4203-8f94-4e9454be5db0}</destination>
|
||||
<destination>{1166a108-aca2-44d6-927b-0fa8bd213a15}</destination>
|
||||
<destination>{49014bb8-5011-4c78-bd6c-3c1d9ee25d0d}</destination>
|
||||
<destination>{09a8e80a-9849-44c7-9d8b-47561c287f0d}</destination>
|
||||
<destination>{8462ae55-6c46-49a4-bf4b-0aad0b6d876c}</destination>
|
||||
<destination>{962a6fc1-e47d-4c33-9a26-071ae439c7f8}</destination>
|
||||
<destination>{6fb914b0-fac2-4fdb-8bf8-ff8501ff60e0}</destination>
|
||||
<destination>{b4296854-6fa8-4e21-9fd1-a3fdf69a076d}</destination>
|
||||
<destination>{104e092c-570c-4594-8269-7d108158a066}</destination>
|
||||
<destination>{97e26487-57c3-4370-a644-df9273ac741a}</destination>
|
||||
<destination>{4b7f39eb-588c-4786-b33c-a87cee0ba4f6}</destination>
|
||||
<destination>{88e41d86-d211-40ac-aee8-749b56146d5b}</destination>
|
||||
<destination>{506e0777-a888-48c4-9ebe-920827cd01c5}</destination>
|
||||
<destination>{8128fa81-bd2a-437c-bf09-c4d58d3c27a6}</destination>
|
||||
<destination>{0d8d036c-d815-45e0-b75f-cb0326260c6b}</destination>
|
||||
<destination>{18331d2d-5524-4ed9-a9ac-c4aedce94585}</destination>
|
||||
<destination>{2a59cf7a-4966-4dc3-bd04-82e798772f7c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{53fffb53-34de-44e8-bb18-2b50af546618}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f2f301a6-8a7a-417d-bb0a-d4f7bfe42742}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4dfe8dc7-9a29-4532-a64b-e24004579d5f}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2ba9768b-1471-4a47-bf16-de330db159b6}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{6b4cc6d6-8f35-4436-9f19-a28f31eb6de1}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{52f58dd3-ca26-4edb-8142-6a21f70f79e7}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ac8a8dd1-ebc6-4ba9-9a08-a2b02f2c1a7c}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{b218cace-0f6d-4bdc-98cf-7fe6bf50b9f6}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{164586ef-cc2b-4046-804c-3da07f5ec2be}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{27eea673-b935-4c5e-aa71-422af9b42d5b}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{48b7d5d8-2af8-4dab-8666-fc3589b84dde}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4ecbb34c-28f7-4231-8e9a-6a0f6aa7dd15}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0a15a61e-1b0c-4757-90f5-ff2f43c938eb}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7427cbe9-0a75-4491-9403-7e073925d462}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3062e1fb-d3cb-478a-84ce-2edf33dada8c}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{67e14104-6905-4358-8233-af0590a257af}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{26fe2ffe-348c-438a-a4ff-c8811ae43db1}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1cd57f29-44c1-43c8-a579-cdee78a6e4ef}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5c0f2bf2-81c0-47ba-99c8-baf333cc98a4}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.264999986</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{67143558-0a95-4203-8f94-4e9454be5db0}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1166a108-aca2-44d6-927b-0fa8bd213a15}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{49014bb8-5011-4c78-bd6c-3c1d9ee25d0d}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{09a8e80a-9849-44c7-9d8b-47561c287f0d}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8462ae55-6c46-49a4-bf4b-0aad0b6d876c}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{962a6fc1-e47d-4c33-9a26-071ae439c7f8}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6fb914b0-fac2-4fdb-8bf8-ff8501ff60e0}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{b4296854-6fa8-4e21-9fd1-a3fdf69a076d}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{104e092c-570c-4594-8269-7d108158a066}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{97e26487-57c3-4370-a644-df9273ac741a}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4b7f39eb-588c-4786-b33c-a87cee0ba4f6}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{88e41d86-d211-40ac-aee8-749b56146d5b}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{506e0777-a888-48c4-9ebe-920827cd01c5}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{8128fa81-bd2a-437c-bf09-c4d58d3c27a6}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0d8d036c-d815-45e0-b75f-cb0326260c6b}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{18331d2d-5524-4ed9-a9ac-c4aedce94585}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{2a59cf7a-4966-4dc3-bd04-82e798772f7c}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ArrowNock</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{0a216e45-d0d7-4e23-a60a-72809750fb9f}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{558c7e22-1540-47ed-9dc2-43dac14f00b7}</destination>
|
||||
@@ -117,7 +117,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{75e17edb-c71f-49df-8bb0-fd39d7ac9a5a}">
|
||||
<property name="volume">
|
||||
<value>-7.5</value>
|
||||
<value>-5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -135,7 +135,7 @@
|
||||
<object class="MixerBusEffectChain" id="{558c7e22-1540-47ed-9dc2-43dac14f00b7}">
|
||||
<relationship name="effects">
|
||||
<destination>{d747eaa5-f47e-4635-a007-ad467ccc87e6}</destination>
|
||||
<destination>{59d2ea73-2510-4ef0-b37a-5e181dbb3801}</destination>
|
||||
<destination>{bd09b1d8-2ca3-44a4-849c-84d8095222e6}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{7cbe015b-cc24-4b70-9f98-966c84694aba}" />
|
||||
@@ -232,6 +232,453 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{f670c4d3-13bb-493a-bc10-e888ddbaf99e}" />
|
||||
<object class="MixerBusFader" id="{d747eaa5-f47e-4635-a007-ad467ccc87e6}" />
|
||||
<object class="SpatialiserEffect" id="{59d2ea73-2510-4ef0-b37a-5e181dbb3801}" />
|
||||
<object class="PluginEffect" id="{bd09b1d8-2ca3-44a4-849c-84d8095222e6}">
|
||||
<relationship name="plugin">
|
||||
<destination>{29b5f272-c097-4b53-890e-f438c00570f5}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{ff11305a-17b6-4ad2-b7f0-064c6593b16c}" />
|
||||
<object class="Plugin" id="{29b5f272-c097-4b53-890e-f438c00570f5}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{985713c2-56dc-4b58-8869-f001d85273ad}</destination>
|
||||
<destination>{9c0bb3c6-6408-4752-83dd-fa396f39de56}</destination>
|
||||
<destination>{e8b48e98-ebbe-440b-9d53-43c025a39c06}</destination>
|
||||
<destination>{b4284638-ca87-4820-8dad-df04647dbcb8}</destination>
|
||||
<destination>{1a64323c-7748-454c-b392-993b5d91d7ac}</destination>
|
||||
<destination>{cf010a52-059c-4741-8c5d-90b8372a3cad}</destination>
|
||||
<destination>{f2203e8a-4fe9-4474-9c28-ea0d72eb7367}</destination>
|
||||
<destination>{aaf10839-b7ef-4d71-8ab8-a146df863ddd}</destination>
|
||||
<destination>{31439bbc-e79b-474c-9220-6894c43ba6ce}</destination>
|
||||
<destination>{ef958b2b-f22a-4952-be9e-722355eb1c8b}</destination>
|
||||
<destination>{dd631ee6-6b6e-484d-acb0-250e17361d2b}</destination>
|
||||
<destination>{af69b6df-89cd-4a62-a3fe-22724cd84744}</destination>
|
||||
<destination>{89d94e1c-64ff-4377-b860-d932be4ff64a}</destination>
|
||||
<destination>{4b54f240-93d6-4577-8536-a150f475dffd}</destination>
|
||||
<destination>{6429fcdc-63f9-4563-9fe4-f303d2290593}</destination>
|
||||
<destination>{50931865-ed19-4936-a558-137156269d75}</destination>
|
||||
<destination>{da3bcad3-22cf-4418-9802-ae62be23e808}</destination>
|
||||
<destination>{601adf7a-878e-48ef-bbb1-314a6607d083}</destination>
|
||||
<destination>{d1c8b47c-0d5d-4bd6-bd2a-284ac994f362}</destination>
|
||||
<destination>{ddb4debc-4b34-408b-9de9-b90214993f03}</destination>
|
||||
<destination>{ed4cfa5e-89eb-4621-9fab-533653a00632}</destination>
|
||||
<destination>{450b3826-28c4-4e9a-ba3d-a7ab96637808}</destination>
|
||||
<destination>{de67ac40-f00a-4778-a92d-3b48bf196a34}</destination>
|
||||
<destination>{517a3dd2-0c0a-4d61-bef7-59cd7632be10}</destination>
|
||||
<destination>{6ba1dd1d-d8ae-4a25-8214-942a80c0e692}</destination>
|
||||
<destination>{a1ea3d6b-0fe8-4b72-907e-7a6c5c0a1f13}</destination>
|
||||
<destination>{10385fdf-574b-45d5-a503-290481c98164}</destination>
|
||||
<destination>{5123af24-d26f-410b-ae47-abe8adb56096}</destination>
|
||||
<destination>{0fe20973-447a-4dfd-8359-5757b1c41c66}</destination>
|
||||
<destination>{aa3a1e49-8291-47ed-9c51-fa985dc43e0a}</destination>
|
||||
<destination>{f9b7e0d8-a083-400a-805e-eae842736243}</destination>
|
||||
<destination>{a017b2a5-48ad-4ebc-a328-fe8bd3764049}</destination>
|
||||
<destination>{c9f2dad9-92a8-4c79-a7d0-21ab4f10f55a}</destination>
|
||||
<destination>{da8b03bc-55d0-4b1d-97f9-780189d7a374}</destination>
|
||||
<destination>{caa6d904-051d-4efa-b900-d9acc3a138a4}</destination>
|
||||
<destination>{c3532f8e-9006-4a4c-8aa8-531c80af619d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{985713c2-56dc-4b58-8869-f001d85273ad}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{9c0bb3c6-6408-4752-83dd-fa396f39de56}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e8b48e98-ebbe-440b-9d53-43c025a39c06}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b4284638-ca87-4820-8dad-df04647dbcb8}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1a64323c-7748-454c-b392-993b5d91d7ac}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{cf010a52-059c-4741-8c5d-90b8372a3cad}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f2203e8a-4fe9-4474-9c28-ea0d72eb7367}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{aaf10839-b7ef-4d71-8ab8-a146df863ddd}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{31439bbc-e79b-474c-9220-6894c43ba6ce}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ef958b2b-f22a-4952-be9e-722355eb1c8b}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{dd631ee6-6b6e-484d-acb0-250e17361d2b}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{af69b6df-89cd-4a62-a3fe-22724cd84744}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{89d94e1c-64ff-4377-b860-d932be4ff64a}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4b54f240-93d6-4577-8536-a150f475dffd}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6429fcdc-63f9-4563-9fe4-f303d2290593}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{50931865-ed19-4936-a558-137156269d75}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{da3bcad3-22cf-4418-9802-ae62be23e808}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{601adf7a-878e-48ef-bbb1-314a6607d083}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d1c8b47c-0d5d-4bd6-bd2a-284ac994f362}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.275000006</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ddb4debc-4b34-408b-9de9-b90214993f03}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ed4cfa5e-89eb-4621-9fab-533653a00632}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{450b3826-28c4-4e9a-ba3d-a7ab96637808}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{de67ac40-f00a-4778-a92d-3b48bf196a34}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{517a3dd2-0c0a-4d61-bef7-59cd7632be10}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6ba1dd1d-d8ae-4a25-8214-942a80c0e692}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a1ea3d6b-0fe8-4b72-907e-7a6c5c0a1f13}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{10385fdf-574b-45d5-a503-290481c98164}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5123af24-d26f-410b-ae47-abe8adb56096}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0fe20973-447a-4dfd-8359-5757b1c41c66}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{aa3a1e49-8291-47ed-9c51-fa985dc43e0a}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f9b7e0d8-a083-400a-805e-eae842736243}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{a017b2a5-48ad-4ebc-a328-fe8bd3764049}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c9f2dad9-92a8-4c79-a7d0-21ab4f10f55a}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{da8b03bc-55d0-4b1d-97f9-780189d7a374}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{caa6d904-051d-4efa-b900-d9acc3a138a4}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c3532f8e-9006-4a4c-8aa8-531c80af619d}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>Jackal</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{492f1f1e-6836-4f89-90a3-c9b795482c9f}</destination>
|
||||
@@ -130,7 +130,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{0c3a8169-f0eb-4034-bb8d-21ae75c0f937}">
|
||||
<property name="volume">
|
||||
<value>-25</value>
|
||||
<value>-18</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -170,8 +170,8 @@
|
||||
<object class="MixerBusEffectChain" id="{8620dfa3-736f-48d3-9b0b-a02efd2f6063}">
|
||||
<relationship name="effects">
|
||||
<destination>{1b53c329-4af8-4d6e-abe1-e47ed65cd766}</destination>
|
||||
<destination>{70704c14-9803-4f04-9fd4-cb5e2bc86349}</destination>
|
||||
<destination>{18910b19-dbba-41b6-b9fd-7da6757b6078}</destination>
|
||||
<destination>{9c4b7656-9138-4488-af12-bab0ac93b0fe}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{77e2d59c-2b69-431d-8c6b-822770231f0e}" />
|
||||
@@ -195,7 +195,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{1b53c329-4af8-4d6e-abe1-e47ed65cd766}" />
|
||||
<object class="SpatialiserEffect" id="{70704c14-9803-4f04-9fd4-cb5e2bc86349}" />
|
||||
<object class="MultibandEqEffect" id="{18910b19-dbba-41b6-b9fd-7da6757b6078}">
|
||||
<property name="frequencyA">
|
||||
<value>18919.2676</value>
|
||||
@@ -207,6 +206,11 @@
|
||||
<destination>{741d7bac-f479-40c8-adf2-35b99727b934}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{9c4b7656-9138-4488-af12-bab0ac93b0fe}">
|
||||
<relationship name="plugin">
|
||||
<destination>{e387eaf4-34c2-440f-900e-1deed563e16e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{d1e37d12-b067-4d0d-8c26-b4128411d8d7}" />
|
||||
<object class="AutomationPoint" id="{c5f33b8e-5abe-4362-ba74-e105a0dd0ec3}">
|
||||
<property name="position">
|
||||
@@ -256,6 +260,49 @@
|
||||
<destination>{3f60ef63-0c21-4766-a710-0a2db675897d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{e387eaf4-34c2-440f-900e-1deed563e16e}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{de1625f7-c3f8-47e6-a273-de01b2b5c196}</destination>
|
||||
<destination>{073058e6-d711-4842-b54a-431dedcdcc4f}</destination>
|
||||
<destination>{cf41c761-e169-4448-91e8-eb431bfbcc19}</destination>
|
||||
<destination>{cd4802ab-39e6-4c5b-9253-c9957d1681bf}</destination>
|
||||
<destination>{d8f2a8ca-3963-496e-b17e-2da29fd1cef4}</destination>
|
||||
<destination>{4cf4e170-81bb-45e9-9ecb-4b85c6d8b137}</destination>
|
||||
<destination>{304f4b7e-4b3f-4402-99c3-6314ac6935b0}</destination>
|
||||
<destination>{5db32022-30a9-41e6-b467-f27127b49ff3}</destination>
|
||||
<destination>{b73c25d7-f6c2-459b-a404-e2c462b2086f}</destination>
|
||||
<destination>{2a53a814-46e4-44b3-b78a-45bfdd3dc796}</destination>
|
||||
<destination>{cf685af8-3824-4f5f-a692-79e93e69c024}</destination>
|
||||
<destination>{65923844-2075-4f14-afd1-0cf44c068677}</destination>
|
||||
<destination>{22cc478e-831a-4af9-997e-1866e8acb0c8}</destination>
|
||||
<destination>{0e805b84-5ca4-4ebb-bb99-6342b7cacaff}</destination>
|
||||
<destination>{563de21f-ae01-4738-bbe2-701a2fb111ea}</destination>
|
||||
<destination>{db4eeb76-87fc-4d02-830a-975a2d69544f}</destination>
|
||||
<destination>{45b3d404-664c-44eb-8907-6ccf7a51b2e0}</destination>
|
||||
<destination>{2ff9ee77-c236-4de4-b43c-0d263b7de38d}</destination>
|
||||
<destination>{d00f71d1-866b-4aa8-a1c5-a15ea6cc5019}</destination>
|
||||
<destination>{e67bc36b-2bca-4ff0-b8b1-2f8bc6bb55b1}</destination>
|
||||
<destination>{af723fc8-7922-496c-95dd-a5ccbe0251f5}</destination>
|
||||
<destination>{76e021e9-4160-42e7-8971-907e18990249}</destination>
|
||||
<destination>{f79c7e62-3aaa-4010-a72d-2650a78fa250}</destination>
|
||||
<destination>{386aac36-81d7-4599-b07e-f1f8de2290c2}</destination>
|
||||
<destination>{fb34b06a-82ec-416b-8873-ec5ccff76106}</destination>
|
||||
<destination>{da46730b-5f31-42aa-bd70-ee9ce72c5f3a}</destination>
|
||||
<destination>{812a212a-d042-4488-b724-dffe9229c821}</destination>
|
||||
<destination>{79b98b71-bf5c-4325-84e0-0021e535dc8b}</destination>
|
||||
<destination>{f077c1fa-5d94-4bd5-8ca7-b0ac1337e813}</destination>
|
||||
<destination>{9413b2b9-2593-4f78-9417-14703153dec5}</destination>
|
||||
<destination>{9655de6e-83c1-4b89-b226-c586606dd9ec}</destination>
|
||||
<destination>{cc689b56-3d33-41bd-9843-7ddd9fa527bc}</destination>
|
||||
<destination>{7e59bb0a-3ea0-4967-8657-28e4e0886df1}</destination>
|
||||
<destination>{90d03ce2-e38e-4a51-baba-a51174c696b8}</destination>
|
||||
<destination>{382d3a42-34fc-4fc2-8270-f937d3b50fb9}</destination>
|
||||
<destination>{234e0e39-7886-4bb6-97f7-2075de3c2baf}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{3f60ef63-0c21-4766-a710-0a2db675897d}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
@@ -267,6 +314,406 @@
|
||||
<destination>{05152a18-a6f6-4fa6-837a-46cb7dd0bd32}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{de1625f7-c3f8-47e6-a273-de01b2b5c196}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{073058e6-d711-4842-b54a-431dedcdcc4f}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{cf41c761-e169-4448-91e8-eb431bfbcc19}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{cd4802ab-39e6-4c5b-9253-c9957d1681bf}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d8f2a8ca-3963-496e-b17e-2da29fd1cef4}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4cf4e170-81bb-45e9-9ecb-4b85c6d8b137}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{304f4b7e-4b3f-4402-99c3-6314ac6935b0}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5db32022-30a9-41e6-b467-f27127b49ff3}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{b73c25d7-f6c2-459b-a404-e2c462b2086f}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2a53a814-46e4-44b3-b78a-45bfdd3dc796}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cf685af8-3824-4f5f-a692-79e93e69c024}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{65923844-2075-4f14-afd1-0cf44c068677}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{22cc478e-831a-4af9-997e-1866e8acb0c8}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0e805b84-5ca4-4ebb-bb99-6342b7cacaff}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>8.80000019</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{563de21f-ae01-4738-bbe2-701a2fb111ea}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{db4eeb76-87fc-4d02-830a-975a2d69544f}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{45b3d404-664c-44eb-8907-6ccf7a51b2e0}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2ff9ee77-c236-4de4-b43c-0d263b7de38d}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d00f71d1-866b-4aa8-a1c5-a15ea6cc5019}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e67bc36b-2bca-4ff0-b8b1-2f8bc6bb55b1}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{af723fc8-7922-496c-95dd-a5ccbe0251f5}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{76e021e9-4160-42e7-8971-907e18990249}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f79c7e62-3aaa-4010-a72d-2650a78fa250}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{386aac36-81d7-4599-b07e-f1f8de2290c2}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fb34b06a-82ec-416b-8873-ec5ccff76106}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{da46730b-5f31-42aa-bd70-ee9ce72c5f3a}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{812a212a-d042-4488-b724-dffe9229c821}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{79b98b71-bf5c-4325-84e0-0021e535dc8b}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f077c1fa-5d94-4bd5-8ca7-b0ac1337e813}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9413b2b9-2593-4f78-9417-14703153dec5}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{9655de6e-83c1-4b89-b226-c586606dd9ec}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{cc689b56-3d33-41bd-9843-7ddd9fa527bc}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{7e59bb0a-3ea0-4967-8657-28e4e0886df1}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{90d03ce2-e38e-4a51-baba-a51174c696b8}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{382d3a42-34fc-4fc2-8270-f937d3b50fb9}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{234e0e39-7886-4bb6-97f7-2075de3c2baf}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{7d08379e-c956-4aa0-ab1b-065fde0b1355}">
|
||||
<property name="position">
|
||||
<value>0.00061793785310734458</value>
|
||||
|
||||
@@ -83,6 +83,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{e4026f26-5981-474b-9a44-608acab3d641}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{60f94ef3-d090-49ef-b5de-811720290efc}</destination>
|
||||
</relationship>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>AlarmButton</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -77,7 +77,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{6b19d15c-39e6-4ed3-84bf-8813dd7dc014}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>2.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{e85b74a4-cfc3-4199-895f-31a223c7de34}</destination>
|
||||
@@ -111,7 +111,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{24f7438c-1a29-4f87-a357-1bc18f9783ae}">
|
||||
<property name="volume">
|
||||
<value>-2</value>
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -129,7 +129,7 @@
|
||||
<object class="MixerBusEffectChain" id="{e85b74a4-cfc3-4199-895f-31a223c7de34}">
|
||||
<relationship name="effects">
|
||||
<destination>{067bf030-4429-4b6b-96fc-1110388c5bef}</destination>
|
||||
<destination>{b4d6126e-fae8-4b30-99a6-0e5563e216a8}</destination>
|
||||
<destination>{d2534ee3-7354-48f5-9e67-42e5e9a1e910}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{8149a57c-7067-46fd-8f92-ede15d2925bf}" />
|
||||
@@ -149,7 +149,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{4dbe5b9b-f7c4-4e79-8fc6-9335c8ae00f3}" />
|
||||
<object class="MixerBusFader" id="{067bf030-4429-4b6b-96fc-1110388c5bef}" />
|
||||
<object class="SpatialiserEffect" id="{b4d6126e-fae8-4b30-99a6-0e5563e216a8}" />
|
||||
<object class="PluginEffect" id="{d2534ee3-7354-48f5-9e67-42e5e9a1e910}">
|
||||
<relationship name="plugin">
|
||||
<destination>{8f05b802-86c2-4723-8f32-6621bbeaaba0}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{55fef864-9077-42a3-ad95-63489951aed6}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -170,4 +174,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{8b32b996-120f-4d12-864f-804d5732d5b8}" />
|
||||
<object class="Plugin" id="{8f05b802-86c2-4723-8f32-6621bbeaaba0}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{823d3027-cfd3-4f4f-8dec-e1d51c5be020}</destination>
|
||||
<destination>{94c6abf7-add0-419d-a7fd-2467a129208b}</destination>
|
||||
<destination>{5c3c276e-2a18-4fe4-9942-b5af0ab22e68}</destination>
|
||||
<destination>{e4ac437e-6a47-4dd0-83cd-6b668bb7bf1f}</destination>
|
||||
<destination>{dc32f2ad-5eda-40eb-aa90-3752eddd5500}</destination>
|
||||
<destination>{20ca8b7d-cc60-49ce-b20b-51c449f06e9c}</destination>
|
||||
<destination>{b19f805b-d94d-4b2f-91a5-a2a3e1096396}</destination>
|
||||
<destination>{c2b20abf-07e8-47b2-a4e2-d6816758414b}</destination>
|
||||
<destination>{9f416c1e-4a1a-4394-becb-9973a08fd6a8}</destination>
|
||||
<destination>{288d20cb-d469-4487-8fdd-35ea2cff410f}</destination>
|
||||
<destination>{39676045-1faa-4a76-885e-9c974f12c5ac}</destination>
|
||||
<destination>{f7019793-c0f3-4fe5-bd60-c2ab832c9397}</destination>
|
||||
<destination>{2b6c60ab-6add-417c-9118-55e25b5b7c70}</destination>
|
||||
<destination>{e8cb578f-963a-4393-adfd-381de8c5fa0b}</destination>
|
||||
<destination>{f688eda2-76fb-4a10-86cb-5835ee5f0b74}</destination>
|
||||
<destination>{1deb12a7-d4bf-497d-a11b-e779a29d11b2}</destination>
|
||||
<destination>{a48f8b63-5221-4d7b-a2be-48fa0074a374}</destination>
|
||||
<destination>{37053020-ac0f-4fe6-a714-2dbc959470ec}</destination>
|
||||
<destination>{d947c6b3-c990-4b84-8ab2-7f39c484d882}</destination>
|
||||
<destination>{e7a7ebed-33b3-414b-9ead-47ed7aebea6b}</destination>
|
||||
<destination>{96d6c378-f20a-4f89-9991-fb9ab5ce2870}</destination>
|
||||
<destination>{984e7254-9e31-48d6-b13e-a377f702e8cb}</destination>
|
||||
<destination>{9e7ff0b3-77c0-4453-aa05-81d9ef35742b}</destination>
|
||||
<destination>{725e62b1-0479-43ff-acf5-42468e35980b}</destination>
|
||||
<destination>{a26801c2-f143-4550-891b-11f0af007933}</destination>
|
||||
<destination>{f111ecc3-7cba-4c5b-94e9-8a4a0fd451a8}</destination>
|
||||
<destination>{d9513140-81c7-4cca-ab7d-07a0692395ed}</destination>
|
||||
<destination>{5cfbba4f-5749-4a7e-9b30-183492f8dcc9}</destination>
|
||||
<destination>{98ad543d-7faa-4c1f-be8b-cfe76fad2ccc}</destination>
|
||||
<destination>{c1b2f917-a5c4-49cf-98ef-b8c4d01d2e00}</destination>
|
||||
<destination>{0fcadc18-cefc-4b47-a0d6-99c1963bdc01}</destination>
|
||||
<destination>{e80d5f3d-41c8-4583-a6ab-e4fabb23ede0}</destination>
|
||||
<destination>{171bf10a-119b-4edc-b8a6-cbc0b7080705}</destination>
|
||||
<destination>{890114e0-063f-478b-b1f3-45375733d0fc}</destination>
|
||||
<destination>{4d8bab88-cee8-41af-bd89-e3500fd5010b}</destination>
|
||||
<destination>{077e05b9-d263-474f-8184-7fde9e7b296c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{823d3027-cfd3-4f4f-8dec-e1d51c5be020}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{94c6abf7-add0-419d-a7fd-2467a129208b}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{5c3c276e-2a18-4fe4-9942-b5af0ab22e68}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e4ac437e-6a47-4dd0-83cd-6b668bb7bf1f}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{dc32f2ad-5eda-40eb-aa90-3752eddd5500}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{20ca8b7d-cc60-49ce-b20b-51c449f06e9c}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b19f805b-d94d-4b2f-91a5-a2a3e1096396}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c2b20abf-07e8-47b2-a4e2-d6816758414b}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{9f416c1e-4a1a-4394-becb-9973a08fd6a8}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{288d20cb-d469-4487-8fdd-35ea2cff410f}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{39676045-1faa-4a76-885e-9c974f12c5ac}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f7019793-c0f3-4fe5-bd60-c2ab832c9397}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2b6c60ab-6add-417c-9118-55e25b5b7c70}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e8cb578f-963a-4393-adfd-381de8c5fa0b}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f688eda2-76fb-4a10-86cb-5835ee5f0b74}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1deb12a7-d4bf-497d-a11b-e779a29d11b2}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a48f8b63-5221-4d7b-a2be-48fa0074a374}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{37053020-ac0f-4fe6-a714-2dbc959470ec}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d947c6b3-c990-4b84-8ab2-7f39c484d882}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.794999957</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e7a7ebed-33b3-414b-9ead-47ed7aebea6b}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{96d6c378-f20a-4f89-9991-fb9ab5ce2870}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{984e7254-9e31-48d6-b13e-a377f702e8cb}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9e7ff0b3-77c0-4453-aa05-81d9ef35742b}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{725e62b1-0479-43ff-acf5-42468e35980b}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a26801c2-f143-4550-891b-11f0af007933}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f111ecc3-7cba-4c5b-94e9-8a4a0fd451a8}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d9513140-81c7-4cca-ab7d-07a0692395ed}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5cfbba4f-5749-4a7e-9b30-183492f8dcc9}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{98ad543d-7faa-4c1f-be8b-cfe76fad2ccc}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c1b2f917-a5c4-49cf-98ef-b8c4d01d2e00}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{0fcadc18-cefc-4b47-a0d6-99c1963bdc01}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e80d5f3d-41c8-4583-a6ab-e4fabb23ede0}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{171bf10a-119b-4edc-b8a6-cbc0b7080705}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{890114e0-063f-478b-b1f3-45375733d0fc}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4d8bab88-cee8-41af-bd89-e3500fd5010b}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{077e05b9-d263-474f-8184-7fde9e7b296c}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -95,7 +95,6 @@
|
||||
<property name="timelockedOffset">
|
||||
<value>0.10000000000000001</value>
|
||||
</property>
|
||||
<property name="name" />
|
||||
<relationship name="fadeOutCurve">
|
||||
<destination>{742f255b-f508-45a9-8f66-816980083ecb}</destination>
|
||||
</relationship>
|
||||
|
||||
@@ -76,6 +76,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{f9e0e428-bd1d-48c6-b463-eb3c62831302}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{15125d86-3de4-4f6a-957f-2393dbf87d5c}</destination>
|
||||
</relationship>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>CarSystem</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{c1996ea5-31f2-4d15-896b-ea306e738127}</destination>
|
||||
@@ -213,9 +213,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{a600a068-0e8a-488c-b911-1f7c6baf5ba6}">
|
||||
<property name="volume">
|
||||
<value>-10</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Engine1</value>
|
||||
</property>
|
||||
@@ -257,7 +254,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{d9d0ff11-95d8-430d-921a-2b6e7fc08bc7}">
|
||||
<property name="volume">
|
||||
<value>-6</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Engine2</value>
|
||||
@@ -296,9 +293,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{da10e6fc-66e6-44ac-b520-558594949a15}">
|
||||
<property name="volume">
|
||||
<value>-11</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Tires</value>
|
||||
</property>
|
||||
@@ -334,7 +328,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{0269f0e3-c25f-495c-ba7e-6f9a85fd2aaf}">
|
||||
<property name="volume">
|
||||
<value>-19.5</value>
|
||||
<value>-11</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Tires</value>
|
||||
@@ -360,10 +354,10 @@
|
||||
<object class="MixerBusEffectChain" id="{26251485-8b8f-4259-bc84-5fbf400ec338}">
|
||||
<relationship name="effects">
|
||||
<destination>{33b696f1-4bf9-4cf4-8d5f-acc10c50f725}</destination>
|
||||
<destination>{a50ed96a-16db-4201-bee1-584b749a7936}</destination>
|
||||
<destination>{f4ab1895-39a2-462a-bbd7-15a15bdb7779}</destination>
|
||||
<destination>{a309065e-049c-4868-8c92-9e24a5553fef}</destination>
|
||||
<destination>{d1653908-e309-4a86-95eb-e76b2e63dadf}</destination>
|
||||
<destination>{27d3c70f-b0a4-4f40-99c2-25a91b5e5497}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{879c2395-1d4e-48b9-b5b8-7a75689222b5}" />
|
||||
@@ -474,7 +468,6 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{33b696f1-4bf9-4cf4-8d5f-acc10c50f725}" />
|
||||
<object class="SpatialiserEffect" id="{a50ed96a-16db-4201-bee1-584b749a7936}" />
|
||||
<object class="ThreeEQEffect" id="{f4ab1895-39a2-462a-bbd7-15a15bdb7779}">
|
||||
<property name="lowCrossover">
|
||||
<value>580</value>
|
||||
@@ -510,6 +503,11 @@
|
||||
<destination>{773f3ca5-9da0-4e4e-8522-0e326a1fc7ae}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{27d3c70f-b0a4-4f40-99c2-25a91b5e5497}">
|
||||
<relationship name="plugin">
|
||||
<destination>{d11ba16a-5c43-45a0-9c45-c295e6506b2c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{760f4370-fa66-4299-ab80-74c0f7cf474a}">
|
||||
<property name="position">
|
||||
<value>866.52313232421875</value>
|
||||
@@ -665,6 +663,49 @@
|
||||
<destination>{d460001f-3ffd-4ea4-95ae-8daca1747ff0}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Plugin" id="{d11ba16a-5c43-45a0-9c45-c295e6506b2c}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{deb0446c-5022-498d-b66a-1003deb624b1}</destination>
|
||||
<destination>{1ae8520e-1ec9-4d63-9b95-dc1b2425f4ee}</destination>
|
||||
<destination>{c6e8ee16-3015-4c25-8681-314e04bc9ece}</destination>
|
||||
<destination>{0d1a00dd-4078-4bf1-98fd-635efce29cc0}</destination>
|
||||
<destination>{2205eed1-52bc-4f48-b774-6139ef2cc44a}</destination>
|
||||
<destination>{0535a1a1-c4bf-4e25-9960-4773c4689e62}</destination>
|
||||
<destination>{2bf1a762-7a24-4482-9604-38160666eebb}</destination>
|
||||
<destination>{9541211a-2aba-4921-8f0e-bc8b0494d823}</destination>
|
||||
<destination>{59f9f10a-8486-4416-9579-7da775df9305}</destination>
|
||||
<destination>{207d201b-b3e3-4378-8d26-d6a314162604}</destination>
|
||||
<destination>{d924a797-41fa-4c13-951a-5b8b680f6789}</destination>
|
||||
<destination>{53cba6d1-8645-4e73-ba6d-41b75703e127}</destination>
|
||||
<destination>{d8dee4f7-26f7-4671-b657-f824f6839400}</destination>
|
||||
<destination>{22025480-9f5f-4bda-b467-f475453df120}</destination>
|
||||
<destination>{a812c7b2-0141-45e7-b681-b872456a5641}</destination>
|
||||
<destination>{6d9864a7-6302-401f-b5a1-1e56e19af7d9}</destination>
|
||||
<destination>{a23f3a48-337e-4768-b614-d09082f6932b}</destination>
|
||||
<destination>{9b13b27b-a9b3-48fc-8a6d-3ba1e397d64c}</destination>
|
||||
<destination>{2d345733-ebc0-4da4-9434-e2918f9a707a}</destination>
|
||||
<destination>{3a8b9d69-0dad-45f1-b6ae-c8086a93a368}</destination>
|
||||
<destination>{eec4de6c-32b3-4d1f-8f3b-696479c506dd}</destination>
|
||||
<destination>{8903e0cd-84a9-4cc3-8b81-b321339f990d}</destination>
|
||||
<destination>{27d2c3e4-ac5f-4ba8-bdb9-1fc157dcc87e}</destination>
|
||||
<destination>{b4a1109a-79f5-4f9b-9b7e-49d5fb7e4e09}</destination>
|
||||
<destination>{45ab29d7-0ebb-429d-812c-2c0b549a801a}</destination>
|
||||
<destination>{9bb51813-b574-4ed6-ac5f-31fcab854ca7}</destination>
|
||||
<destination>{ffea1b93-2e21-4970-82db-2ddad283ff0b}</destination>
|
||||
<destination>{a8d05cd5-657d-46e0-956e-979cb491d6be}</destination>
|
||||
<destination>{c414fcc6-82dd-4f66-9db5-12a2f4afe17a}</destination>
|
||||
<destination>{4d6841dc-d1e8-4018-b33a-39da89cdd568}</destination>
|
||||
<destination>{f6756fd0-c96b-4b37-9932-cd1c0deb4104}</destination>
|
||||
<destination>{abc38982-9a7b-4acc-b47a-abfcbfd48f54}</destination>
|
||||
<destination>{0da1b2a8-8624-4900-a99f-b098c1ce88b6}</destination>
|
||||
<destination>{e82968b3-b1a2-4edc-9a33-23b991dda3ee}</destination>
|
||||
<destination>{be0dbd99-3f54-44dc-94cc-bcbf0c8438d5}</destination>
|
||||
<destination>{91c0da13-1db0-48f8-ab08-b142597d4255}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{fed213f5-daac-4619-a9ad-a3790f75763a}">
|
||||
<relationship name="parameter">
|
||||
<destination>{7f93562b-4c20-4f1d-9c68-6a145d8afb6d}</destination>
|
||||
@@ -712,6 +753,406 @@
|
||||
<destination>{f6f2003f-5628-4ef9-88a3-2047a01857ce}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{deb0446c-5022-498d-b66a-1003deb624b1}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{1ae8520e-1ec9-4d63-9b95-dc1b2425f4ee}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c6e8ee16-3015-4c25-8681-314e04bc9ece}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0d1a00dd-4078-4bf1-98fd-635efce29cc0}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2205eed1-52bc-4f48-b774-6139ef2cc44a}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0535a1a1-c4bf-4e25-9960-4773c4689e62}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2bf1a762-7a24-4482-9604-38160666eebb}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{9541211a-2aba-4921-8f0e-bc8b0494d823}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{59f9f10a-8486-4416-9579-7da775df9305}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{207d201b-b3e3-4378-8d26-d6a314162604}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d924a797-41fa-4c13-951a-5b8b680f6789}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{53cba6d1-8645-4e73-ba6d-41b75703e127}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d8dee4f7-26f7-4671-b657-f824f6839400}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{22025480-9f5f-4bda-b467-f475453df120}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>50</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a812c7b2-0141-45e7-b681-b872456a5641}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6d9864a7-6302-401f-b5a1-1e56e19af7d9}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a23f3a48-337e-4768-b614-d09082f6932b}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9b13b27b-a9b3-48fc-8a6d-3ba1e397d64c}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2d345733-ebc0-4da4-9434-e2918f9a707a}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3a8b9d69-0dad-45f1-b6ae-c8086a93a368}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{eec4de6c-32b3-4d1f-8f3b-696479c506dd}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8903e0cd-84a9-4cc3-8b81-b321339f990d}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{27d2c3e4-ac5f-4ba8-bdb9-1fc157dcc87e}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b4a1109a-79f5-4f9b-9b7e-49d5fb7e4e09}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{45ab29d7-0ebb-429d-812c-2c0b549a801a}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9bb51813-b574-4ed6-ac5f-31fcab854ca7}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{ffea1b93-2e21-4970-82db-2ddad283ff0b}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a8d05cd5-657d-46e0-956e-979cb491d6be}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c414fcc6-82dd-4f66-9db5-12a2f4afe17a}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{4d6841dc-d1e8-4018-b33a-39da89cdd568}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f6756fd0-c96b-4b37-9932-cd1c0deb4104}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{abc38982-9a7b-4acc-b47a-abfcbfd48f54}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{0da1b2a8-8624-4900-a99f-b098c1ce88b6}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{e82968b3-b1a2-4edc-9a33-23b991dda3ee}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{be0dbd99-3f54-44dc-94cc-bcbf0c8438d5}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{91c0da13-1db0-48f8-ab08-b142597d4255}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{88224bcf-947e-474d-a462-76d928e427e9}">
|
||||
<property name="position">
|
||||
<value>-1</value>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>LetterEnter</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -87,7 +87,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{09541088-24f8-4cef-ad4f-6e713e129f95}">
|
||||
<property name="volume">
|
||||
<value>9</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{0fee013d-657b-47c5-85d1-475195a25a23}</destination>
|
||||
@@ -158,7 +158,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{4ff7b258-d435-4151-a173-400ba4d502aa}">
|
||||
<property name="volume">
|
||||
<value>3</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 2</value>
|
||||
@@ -176,9 +176,9 @@
|
||||
<object class="MixerBusEffectChain" id="{0fee013d-657b-47c5-85d1-475195a25a23}">
|
||||
<relationship name="effects">
|
||||
<destination>{c319c0a8-a514-4c73-9d0a-ad2115e4a878}</destination>
|
||||
<destination>{2885d0dd-97f8-46ab-b161-d832252351b7}</destination>
|
||||
<destination>{8635c676-2112-4df3-b486-33adac75ca7b}</destination>
|
||||
<destination>{6aca8378-0c63-4c5b-8054-d9ede9ab7b34}</destination>
|
||||
<destination>{30aa5d38-76ab-427b-8276-aa4a010da3fa}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{3cee36ef-5026-4637-99bd-4fc481a5a71d}" />
|
||||
@@ -212,7 +212,6 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{04226a84-5ab9-4b57-9782-aa2f5b3ba995}" />
|
||||
<object class="MixerBusFader" id="{c319c0a8-a514-4c73-9d0a-ad2115e4a878}" />
|
||||
<object class="SpatialiserEffect" id="{2885d0dd-97f8-46ab-b161-d832252351b7}" />
|
||||
<object class="CompressorEffect" id="{8635c676-2112-4df3-b486-33adac75ca7b}">
|
||||
<property name="threshold">
|
||||
<value>-34</value>
|
||||
@@ -235,6 +234,11 @@
|
||||
<value>3.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{30aa5d38-76ab-427b-8276-aa4a010da3fa}">
|
||||
<relationship name="plugin">
|
||||
<destination>{15daf3d0-885d-490a-ac0b-9502e88b021c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{102d6ef3-8bba-4cc0-8f42-c2d99cfb53c0}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
@@ -275,4 +279,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{526e1a90-4802-4580-a9b4-1ba7834eebac}" />
|
||||
<object class="Plugin" id="{15daf3d0-885d-490a-ac0b-9502e88b021c}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{6ba0e3c2-c1c7-4ada-9f9b-fc040c16d04e}</destination>
|
||||
<destination>{4f5eef96-5a14-499b-bad0-a935c6a36dc1}</destination>
|
||||
<destination>{1dc47469-2be9-404b-b8d3-aca20f4da421}</destination>
|
||||
<destination>{ff293c1c-5b69-4b53-b6fd-64eec2a63761}</destination>
|
||||
<destination>{a6e3c2ce-0e6c-481a-b0d1-0a4d8fa954d7}</destination>
|
||||
<destination>{0067a71b-75d7-4cb6-aa95-b7adc5af6286}</destination>
|
||||
<destination>{1f0a77a5-a3b0-40dc-9dc3-c53285010b88}</destination>
|
||||
<destination>{d3e81198-308e-4449-a567-296d500965bd}</destination>
|
||||
<destination>{7727969d-d240-4203-bc42-252d075c2ef3}</destination>
|
||||
<destination>{2d6f3353-7a8c-48b7-89d4-072b7587e80b}</destination>
|
||||
<destination>{d3bb44f2-abb9-44a7-9624-1680d5ff87b9}</destination>
|
||||
<destination>{a01216b8-aa0f-4b65-a803-1cdbfa825966}</destination>
|
||||
<destination>{e08dd8b9-f92d-489c-ad61-bc4dac9b8e20}</destination>
|
||||
<destination>{15d4e79a-f905-4938-9907-34f8943d001e}</destination>
|
||||
<destination>{697af002-77ad-4f0d-98fe-d0f2b6333c9e}</destination>
|
||||
<destination>{807c0078-260b-4787-b12b-5cfa4125dbf8}</destination>
|
||||
<destination>{efb85e04-67d2-4340-ac62-69cfc1f4c896}</destination>
|
||||
<destination>{465812b8-f9e1-430c-b2a5-ab77623bf442}</destination>
|
||||
<destination>{a0a40720-c976-4461-85d7-ee4cdda81394}</destination>
|
||||
<destination>{230f4cc1-36d9-425a-b0bb-ec26123e0e60}</destination>
|
||||
<destination>{fb250215-0ce6-4648-bf17-a4e6ac2f8702}</destination>
|
||||
<destination>{4c373368-62be-4c46-b3c0-9e24187a3bc4}</destination>
|
||||
<destination>{5a59dff7-21fe-4881-a614-03e5d2f15977}</destination>
|
||||
<destination>{ddb9aeb6-2bd5-4772-afbd-1dc22931d8b1}</destination>
|
||||
<destination>{7b1ffd7e-4da3-4cc8-a44d-759f5beaeca8}</destination>
|
||||
<destination>{1d0b6842-5514-4987-8cea-8151ab2d4da6}</destination>
|
||||
<destination>{f74a7d5b-bd83-4404-9eb6-8f5ba040c9bc}</destination>
|
||||
<destination>{d29d211c-747c-4e0f-b22c-b9c3000a1b7a}</destination>
|
||||
<destination>{6c0f1974-195d-48c6-8327-cabbf909a6f9}</destination>
|
||||
<destination>{44acc020-ed7d-4427-a122-a8440a0b4143}</destination>
|
||||
<destination>{a84f5d90-920b-483e-bfb9-b2d531d12937}</destination>
|
||||
<destination>{565c822d-48ac-46fa-8c5b-390de7e1f97e}</destination>
|
||||
<destination>{1ad11f8f-b3be-4438-9b61-086429c3bb3b}</destination>
|
||||
<destination>{65b85df1-5911-4eb9-9f3a-ee22cf2b19ad}</destination>
|
||||
<destination>{8108f4c0-7c4d-4b46-a917-f6460a4555cf}</destination>
|
||||
<destination>{0c1e3b0a-13b7-4c6e-bda3-98afc8c53594}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{6ba0e3c2-c1c7-4ada-9f9b-fc040c16d04e}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{4f5eef96-5a14-499b-bad0-a935c6a36dc1}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1dc47469-2be9-404b-b8d3-aca20f4da421}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ff293c1c-5b69-4b53-b6fd-64eec2a63761}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a6e3c2ce-0e6c-481a-b0d1-0a4d8fa954d7}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0067a71b-75d7-4cb6-aa95-b7adc5af6286}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{1f0a77a5-a3b0-40dc-9dc3-c53285010b88}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d3e81198-308e-4449-a567-296d500965bd}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{7727969d-d240-4203-bc42-252d075c2ef3}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{2d6f3353-7a8c-48b7-89d4-072b7587e80b}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d3bb44f2-abb9-44a7-9624-1680d5ff87b9}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a01216b8-aa0f-4b65-a803-1cdbfa825966}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e08dd8b9-f92d-489c-ad61-bc4dac9b8e20}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{15d4e79a-f905-4938-9907-34f8943d001e}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{697af002-77ad-4f0d-98fe-d0f2b6333c9e}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{807c0078-260b-4787-b12b-5cfa4125dbf8}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{efb85e04-67d2-4340-ac62-69cfc1f4c896}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{465812b8-f9e1-430c-b2a5-ab77623bf442}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a0a40720-c976-4461-85d7-ee4cdda81394}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.774999976</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{230f4cc1-36d9-425a-b0bb-ec26123e0e60}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{fb250215-0ce6-4648-bf17-a4e6ac2f8702}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4c373368-62be-4c46-b3c0-9e24187a3bc4}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5a59dff7-21fe-4881-a614-03e5d2f15977}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ddb9aeb6-2bd5-4772-afbd-1dc22931d8b1}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7b1ffd7e-4da3-4cc8-a44d-759f5beaeca8}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1d0b6842-5514-4987-8cea-8151ab2d4da6}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{f74a7d5b-bd83-4404-9eb6-8f5ba040c9bc}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d29d211c-747c-4e0f-b22c-b9c3000a1b7a}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{6c0f1974-195d-48c6-8327-cabbf909a6f9}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{44acc020-ed7d-4427-a122-a8440a0b4143}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{a84f5d90-920b-483e-bfb9-b2d531d12937}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{565c822d-48ac-46fa-8c5b-390de7e1f97e}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{1ad11f8f-b3be-4438-9b61-086429c3bb3b}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{65b85df1-5911-4eb9-9f3a-ee22cf2b19ad}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8108f4c0-7c4d-4b46-a917-f6460a4555cf}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0c1e3b0a-13b7-4c6e-bda3-98afc8c53594}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ArrowRelease</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{a0ab2e33-afbc-46d0-8df8-d9ceb2d24247}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{141dab89-eace-46ee-9818-6c8cfacc624f}</destination>
|
||||
@@ -109,7 +109,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{34e4e6d5-f416-4bb7-93a4-3dd955b78761}">
|
||||
<property name="volume">
|
||||
<value>-7.5</value>
|
||||
<value>-5.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -127,7 +127,7 @@
|
||||
<object class="MixerBusEffectChain" id="{141dab89-eace-46ee-9818-6c8cfacc624f}">
|
||||
<relationship name="effects">
|
||||
<destination>{99753ca9-710b-4733-a879-c376d267b4b2}</destination>
|
||||
<destination>{88c4507e-303b-46bb-9f13-de37fd7f41aa}</destination>
|
||||
<destination>{99b0a9f1-4e5a-4860-a7d8-9565e08fafb9}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{b77928e1-d76f-459b-8b7d-6181b1fd66d2}" />
|
||||
@@ -184,6 +184,453 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{ca812b3b-7f5f-4213-99ed-bb8a05e1e9db}" />
|
||||
<object class="MixerBusFader" id="{99753ca9-710b-4733-a879-c376d267b4b2}" />
|
||||
<object class="SpatialiserEffect" id="{88c4507e-303b-46bb-9f13-de37fd7f41aa}" />
|
||||
<object class="PluginEffect" id="{99b0a9f1-4e5a-4860-a7d8-9565e08fafb9}">
|
||||
<relationship name="plugin">
|
||||
<destination>{99a834b8-c5bf-4ef3-b478-fd77afbbd125}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{ee618f9b-7e2e-4f69-8038-b59b652b55bc}" />
|
||||
<object class="Plugin" id="{99a834b8-c5bf-4ef3-b478-fd77afbbd125}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{ffd9f7be-49c7-4fa1-a761-1046a83e9272}</destination>
|
||||
<destination>{c0ce0b4b-f285-48b5-907d-469c8ce8328c}</destination>
|
||||
<destination>{c3aea88b-5cce-4354-9d7a-df561fc3a9c4}</destination>
|
||||
<destination>{f94be3d6-fb0b-4f87-a01a-45d8815a188f}</destination>
|
||||
<destination>{f51b5fe3-1e05-4eab-a7ba-27071f1c6f98}</destination>
|
||||
<destination>{401eb4ee-28ce-484f-aab8-88485e493712}</destination>
|
||||
<destination>{020bde0e-82d7-484b-a0e0-c2cc234ad10e}</destination>
|
||||
<destination>{40ae0006-3251-49db-aed4-3637bcfd03ef}</destination>
|
||||
<destination>{5bdcd2df-68ca-4e10-9fe1-d65907ffb38a}</destination>
|
||||
<destination>{4e0734e5-2e40-4612-8ec6-fa9480ef8c14}</destination>
|
||||
<destination>{0cdaa4c8-d9cc-469e-b503-02ae07899857}</destination>
|
||||
<destination>{389a6338-8d27-42e4-a559-ec2243a76acc}</destination>
|
||||
<destination>{3193fe04-0c27-4cf4-8b16-b609b16121db}</destination>
|
||||
<destination>{e22bc18e-ea39-493a-a9f8-6492a9a258f7}</destination>
|
||||
<destination>{762c7bcf-695a-44d3-b61f-5e073e32b5c7}</destination>
|
||||
<destination>{7fc91182-ae4f-4928-8da2-0fa81c343276}</destination>
|
||||
<destination>{e8e2948b-a246-492a-a555-0c4d9d732137}</destination>
|
||||
<destination>{5ef52a2c-1bf9-41e2-aa98-7fac61754d49}</destination>
|
||||
<destination>{efcd89f0-8f48-48f6-b640-aa379777616b}</destination>
|
||||
<destination>{1d78902c-829d-4785-babb-cc683a1c9744}</destination>
|
||||
<destination>{48458f91-c30f-4568-8d5c-1f7643e04c01}</destination>
|
||||
<destination>{0260369d-7f18-42ef-9f38-8fef6ac73f70}</destination>
|
||||
<destination>{e59f33b7-1eac-40ec-98c5-73a02f7aa7c2}</destination>
|
||||
<destination>{78e7526a-f508-4968-84c6-57df6a468240}</destination>
|
||||
<destination>{3e6bb972-5373-4d69-a38b-067301728419}</destination>
|
||||
<destination>{436f2451-d475-449f-8fc5-d3245ab6a46d}</destination>
|
||||
<destination>{5bda66ac-71cd-4c09-9af1-7f3e8194b6af}</destination>
|
||||
<destination>{b9fdc811-86da-4de6-a818-364081fa88c0}</destination>
|
||||
<destination>{19d2b0d4-5e90-440a-ab49-a1ceb8b9c0f2}</destination>
|
||||
<destination>{a0a9e3fc-839e-4da6-b9de-f450daa95117}</destination>
|
||||
<destination>{976ed5b2-f548-4549-8c5d-06e5e08b1c35}</destination>
|
||||
<destination>{4d28fcd5-99ea-41b2-9840-b74bcae349dc}</destination>
|
||||
<destination>{d27ec552-897e-4f1f-b798-4ecfc786ce25}</destination>
|
||||
<destination>{8adbf7aa-9161-42c3-9379-ce375cf80bcc}</destination>
|
||||
<destination>{92a634fa-6c6a-45fe-b675-0e92da66bcfc}</destination>
|
||||
<destination>{c44fdf72-ac46-459d-9cbf-ea9e99d36003}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ffd9f7be-49c7-4fa1-a761-1046a83e9272}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c0ce0b4b-f285-48b5-907d-469c8ce8328c}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c3aea88b-5cce-4354-9d7a-df561fc3a9c4}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f94be3d6-fb0b-4f87-a01a-45d8815a188f}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f51b5fe3-1e05-4eab-a7ba-27071f1c6f98}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{401eb4ee-28ce-484f-aab8-88485e493712}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{020bde0e-82d7-484b-a0e0-c2cc234ad10e}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{40ae0006-3251-49db-aed4-3637bcfd03ef}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5bdcd2df-68ca-4e10-9fe1-d65907ffb38a}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{4e0734e5-2e40-4612-8ec6-fa9480ef8c14}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0cdaa4c8-d9cc-469e-b503-02ae07899857}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{389a6338-8d27-42e4-a559-ec2243a76acc}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3193fe04-0c27-4cf4-8b16-b609b16121db}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e22bc18e-ea39-493a-a9f8-6492a9a258f7}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{762c7bcf-695a-44d3-b61f-5e073e32b5c7}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{7fc91182-ae4f-4928-8da2-0fa81c343276}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e8e2948b-a246-492a-a555-0c4d9d732137}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{5ef52a2c-1bf9-41e2-aa98-7fac61754d49}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{efcd89f0-8f48-48f6-b640-aa379777616b}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.234999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1d78902c-829d-4785-babb-cc683a1c9744}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.19999993</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{48458f91-c30f-4568-8d5c-1f7643e04c01}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0260369d-7f18-42ef-9f38-8fef6ac73f70}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e59f33b7-1eac-40ec-98c5-73a02f7aa7c2}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{78e7526a-f508-4968-84c6-57df6a468240}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{3e6bb972-5373-4d69-a38b-067301728419}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{436f2451-d475-449f-8fc5-d3245ab6a46d}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{5bda66ac-71cd-4c09-9af1-7f3e8194b6af}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b9fdc811-86da-4de6-a818-364081fa88c0}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{19d2b0d4-5e90-440a-ab49-a1ceb8b9c0f2}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a0a9e3fc-839e-4da6-b9de-f450daa95117}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{976ed5b2-f548-4549-8c5d-06e5e08b1c35}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{4d28fcd5-99ea-41b2-9840-b74bcae349dc}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{d27ec552-897e-4f1f-b798-4ecfc786ce25}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8adbf7aa-9161-42c3-9379-ce375cf80bcc}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{92a634fa-6c6a-45fe-b675-0e92da66bcfc}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c44fdf72-ac46-459d-9cbf-ea9e99d36003}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ElevatorArrival</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{10599e26-82f2-47e5-9e3a-1b7ceae11d41}</destination>
|
||||
@@ -79,6 +79,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{9b741549-025d-4a35-adb8-bbd46cdf5f90}">
|
||||
<property name="volume">
|
||||
<value>4.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{7a981074-6d06-4942-9bc9-d913e88dc543}</destination>
|
||||
</relationship>
|
||||
@@ -105,7 +108,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{11c59dfd-3b93-4ee1-9357-d0bec479e62f}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -123,7 +126,7 @@
|
||||
<object class="MixerBusEffectChain" id="{7a981074-6d06-4942-9bc9-d913e88dc543}">
|
||||
<relationship name="effects">
|
||||
<destination>{f5390ca8-6654-4519-86e0-acb170f85dca}</destination>
|
||||
<destination>{38cb0f3c-9ce1-456c-99a0-59a41fe816e0}</destination>
|
||||
<destination>{446e3d9d-196f-4c6c-812e-34808c07ac92}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{9f18c375-b15d-43d0-bb8e-50e1ac44495f}" />
|
||||
@@ -136,7 +139,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{7997311c-d2c7-4700-97ba-4af0a1324cb1}" />
|
||||
<object class="MixerBusFader" id="{f5390ca8-6654-4519-86e0-acb170f85dca}" />
|
||||
<object class="SpatialiserEffect" id="{38cb0f3c-9ce1-456c-99a0-59a41fe816e0}" />
|
||||
<object class="PluginEffect" id="{446e3d9d-196f-4c6c-812e-34808c07ac92}">
|
||||
<relationship name="plugin">
|
||||
<destination>{32f5d0bb-0453-42f9-bbbf-e0dab02f3471}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{6aa92297-8f30-489e-98c0-a83c7e44f06c}" />
|
||||
<object class="MultibandEqEffect" id="{a7acdfda-8f0c-4dc1-91d1-63487065a22e}">
|
||||
<property name="filterTypeA">
|
||||
@@ -158,4 +165,447 @@
|
||||
<value>3.10344815</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{32f5d0bb-0453-42f9-bbbf-e0dab02f3471}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{ffdfb2e0-1081-422f-8860-496c255ee421}</destination>
|
||||
<destination>{cdcd264f-034a-4bd3-af76-572046acebc4}</destination>
|
||||
<destination>{f6d49d98-1ed4-46e5-adb6-fe32e8f43811}</destination>
|
||||
<destination>{d9c3d468-73b6-40ae-881a-c16c186de9ac}</destination>
|
||||
<destination>{b8eb4ee0-14b4-4561-9fc9-ddf58a3f8390}</destination>
|
||||
<destination>{54df225a-7f8f-4a8d-a75b-4134ec0b1f55}</destination>
|
||||
<destination>{8ceae7d6-5963-48fc-a86a-bbe717a45292}</destination>
|
||||
<destination>{e64ca133-1fdc-454a-868d-4514a2dc58e7}</destination>
|
||||
<destination>{caabd9aa-9fb8-4110-a9c0-4511e91ba859}</destination>
|
||||
<destination>{89143a22-1d44-4be2-bb41-c02af9a43e83}</destination>
|
||||
<destination>{13a1bf29-f5b5-4829-95cf-a922782b743e}</destination>
|
||||
<destination>{8512d14a-6705-4239-b237-83049cd452a7}</destination>
|
||||
<destination>{06cc1527-f05c-45f8-9ad5-9c7859f99f36}</destination>
|
||||
<destination>{bda684bb-0272-49a1-bc56-268628fa0853}</destination>
|
||||
<destination>{38299a17-501c-4d28-b00a-cb000b6375f2}</destination>
|
||||
<destination>{1b6969f5-a099-49aa-8add-fd9f020a7566}</destination>
|
||||
<destination>{41733a4f-d838-4edc-b59a-6ccb5499f3c3}</destination>
|
||||
<destination>{88733d08-b5e4-46d2-b9b6-4a37c60d2b70}</destination>
|
||||
<destination>{ef374d2d-c626-4432-8687-fe5874b8b452}</destination>
|
||||
<destination>{ba81ca7d-961f-4d75-8bcb-36f7dccf6825}</destination>
|
||||
<destination>{9877a088-32d6-4e01-8324-5897d6064727}</destination>
|
||||
<destination>{fcfad716-93bb-4672-b87b-d134345783e6}</destination>
|
||||
<destination>{cf3dc90f-2bdc-4af0-92d8-012cc164baa4}</destination>
|
||||
<destination>{e6ac52a8-a313-4daa-8775-622e5caafc9f}</destination>
|
||||
<destination>{855c39a8-0d98-4b0c-a33d-358ee991abb0}</destination>
|
||||
<destination>{d499dfa0-4d9c-494f-b377-8f1cd57a04ae}</destination>
|
||||
<destination>{4f8b2c9d-c3c0-4da8-9b44-fb5fe8eaa659}</destination>
|
||||
<destination>{ec3cca25-aeae-4ec2-97cd-56b839586e0d}</destination>
|
||||
<destination>{000a51a5-0776-458e-b679-ae2e992d8ace}</destination>
|
||||
<destination>{79782a9f-1595-410c-8ef1-3a013f0b66aa}</destination>
|
||||
<destination>{e7cce6de-6166-4cd5-8a14-0513490c0ef1}</destination>
|
||||
<destination>{e9e1fbef-6f91-425f-9a93-7e8375e63330}</destination>
|
||||
<destination>{96c4a87a-cb3b-43b0-86f8-3ad85cb34f4d}</destination>
|
||||
<destination>{851b3d3e-58e6-482a-8c88-02c0a1e01801}</destination>
|
||||
<destination>{3f7a824f-66d0-49ee-88e0-e076a923b3f4}</destination>
|
||||
<destination>{8034368d-8b48-439c-89eb-01228836b817}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ffdfb2e0-1081-422f-8860-496c255ee421}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{cdcd264f-034a-4bd3-af76-572046acebc4}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f6d49d98-1ed4-46e5-adb6-fe32e8f43811}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{d9c3d468-73b6-40ae-881a-c16c186de9ac}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b8eb4ee0-14b4-4561-9fc9-ddf58a3f8390}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{54df225a-7f8f-4a8d-a75b-4134ec0b1f55}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8ceae7d6-5963-48fc-a86a-bbe717a45292}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e64ca133-1fdc-454a-868d-4514a2dc58e7}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{caabd9aa-9fb8-4110-a9c0-4511e91ba859}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{89143a22-1d44-4be2-bb41-c02af9a43e83}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{13a1bf29-f5b5-4829-95cf-a922782b743e}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{8512d14a-6705-4239-b237-83049cd452a7}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{06cc1527-f05c-45f8-9ad5-9c7859f99f36}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.60000002</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{bda684bb-0272-49a1-bc56-268628fa0853}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>5.4000001</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{38299a17-501c-4d28-b00a-cb000b6375f2}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1b6969f5-a099-49aa-8add-fd9f020a7566}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{41733a4f-d838-4edc-b59a-6ccb5499f3c3}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{88733d08-b5e4-46d2-b9b6-4a37c60d2b70}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ef374d2d-c626-4432-8687-fe5874b8b452}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.964999974</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ba81ca7d-961f-4d75-8bcb-36f7dccf6825}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2.15999985</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9877a088-32d6-4e01-8324-5897d6064727}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{fcfad716-93bb-4672-b87b-d134345783e6}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{cf3dc90f-2bdc-4af0-92d8-012cc164baa4}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e6ac52a8-a313-4daa-8775-622e5caafc9f}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{855c39a8-0d98-4b0c-a33d-358ee991abb0}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d499dfa0-4d9c-494f-b377-8f1cd57a04ae}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{4f8b2c9d-c3c0-4da8-9b44-fb5fe8eaa659}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ec3cca25-aeae-4ec2-97cd-56b839586e0d}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{000a51a5-0776-458e-b679-ae2e992d8ace}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{79782a9f-1595-410c-8ef1-3a013f0b66aa}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e7cce6de-6166-4cd5-8a14-0513490c0ef1}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e9e1fbef-6f91-425f-9a93-7e8375e63330}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{96c4a87a-cb3b-43b0-86f8-3ad85cb34f4d}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{851b3d3e-58e6-482a-8c88-02c0a1e01801}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{3f7a824f-66d0-49ee-88e0-e076a923b3f4}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{8034368d-8b48-439c-89eb-01228836b817}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>Click</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{7151fc52-9410-443c-ac8a-72d53c7a73c2}</destination>
|
||||
@@ -93,7 +93,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{b8602938-875e-4c5f-84a7-d124173e70c0}">
|
||||
<property name="volume">
|
||||
<value>3</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{4d7f704e-a8db-4295-b8b5-149e8ee1a676}</destination>
|
||||
@@ -161,7 +161,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{cdf80f01-e74c-4af6-98fc-be0a8a66d5fa}">
|
||||
<property name="volume">
|
||||
<value>7.5</value>
|
||||
<value>9.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 2</value>
|
||||
@@ -179,7 +179,7 @@
|
||||
<object class="MixerBusEffectChain" id="{4d7f704e-a8db-4295-b8b5-149e8ee1a676}">
|
||||
<relationship name="effects">
|
||||
<destination>{b4f72ada-e35e-469c-a94c-edce6ca051ba}</destination>
|
||||
<destination>{24d229f2-7038-4dd0-bc79-ff3e4522dd33}</destination>
|
||||
<destination>{ff83275f-6658-4f58-a83e-0fe206114ac4}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{f8eb870f-130d-4110-9b6f-2c8a2a491d1c}" />
|
||||
@@ -218,7 +218,11 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{b4f72ada-e35e-469c-a94c-edce6ca051ba}" />
|
||||
<object class="SpatialiserEffect" id="{24d229f2-7038-4dd0-bc79-ff3e4522dd33}" />
|
||||
<object class="PluginEffect" id="{ff83275f-6658-4f58-a83e-0fe206114ac4}">
|
||||
<relationship name="plugin">
|
||||
<destination>{152eddcf-76f3-4d10-b9ee-a59a4159988e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{d25815fe-ea9c-46eb-b7aa-ef2224321268}">
|
||||
<property name="position">
|
||||
<value>0.079999999999999988</value>
|
||||
@@ -270,4 +274,447 @@
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{152eddcf-76f3-4d10-b9ee-a59a4159988e}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{8407ab9a-7499-49be-b919-40676d61c5bc}</destination>
|
||||
<destination>{e12ed482-7d2b-4a1f-af1b-c439e0145455}</destination>
|
||||
<destination>{b459ce17-5635-445a-9f22-d7d020d952e9}</destination>
|
||||
<destination>{c79b6c35-305d-4e66-a486-572ea830dd7e}</destination>
|
||||
<destination>{bc8dbbf5-8a8c-40a7-a06c-540d382cea76}</destination>
|
||||
<destination>{bc820023-ec2b-4521-807a-eab6b090fc2e}</destination>
|
||||
<destination>{f0aafb85-1961-4d48-a8e0-a359dc573ff3}</destination>
|
||||
<destination>{d6ddb3ed-542d-4e44-88a3-5f7ce9e4a7f7}</destination>
|
||||
<destination>{e8f45717-2161-49a0-bab8-61cfd02b43b5}</destination>
|
||||
<destination>{ce7a2d8b-2659-450a-8774-7b46bd6ea3c3}</destination>
|
||||
<destination>{bd416c56-11cc-4fb0-bb69-3a9761424689}</destination>
|
||||
<destination>{ced51b25-4fba-4399-87c2-76243e832f2c}</destination>
|
||||
<destination>{1dda413c-f2b5-45aa-b18b-5121d9e50ed2}</destination>
|
||||
<destination>{b7e88d8a-b7d8-4c3e-a08f-e8539aca057f}</destination>
|
||||
<destination>{186d493f-451e-4506-90c0-ac86f1d978fb}</destination>
|
||||
<destination>{652b25dc-08f2-45a8-bff3-c3824ef9f625}</destination>
|
||||
<destination>{69c4d5ee-f49f-46a3-be14-251d11467968}</destination>
|
||||
<destination>{31b2c84b-8817-475b-8049-bb68c0e4ad60}</destination>
|
||||
<destination>{a4c7c859-cca4-4601-b7cc-0d6a0adbd2df}</destination>
|
||||
<destination>{d55f4036-fd16-4284-9b39-4c04af120f23}</destination>
|
||||
<destination>{120e6586-40fb-4d3d-9ad9-00269974c5a2}</destination>
|
||||
<destination>{500f1161-5ece-4d4a-8c5f-bc8e30b77426}</destination>
|
||||
<destination>{0af55298-119b-4d87-ae6d-7e6a0ffa882f}</destination>
|
||||
<destination>{aa06d5df-37f5-40f4-a349-e5d2afb92eb3}</destination>
|
||||
<destination>{c6c96005-0a97-486b-b42a-743874eb3340}</destination>
|
||||
<destination>{480b83c9-347d-49ed-95ac-07cbbecb30f0}</destination>
|
||||
<destination>{967420ae-2705-46e5-9684-66e9b7807273}</destination>
|
||||
<destination>{c783b6f8-e6fd-4f85-9db2-4118a3032958}</destination>
|
||||
<destination>{24eb7f20-2461-4f4e-8008-72f166ae0dd6}</destination>
|
||||
<destination>{af796c8a-6fe8-4f5c-88a4-bb53a2a03f0a}</destination>
|
||||
<destination>{f242110e-454b-46a1-a6d7-4c2dab144a26}</destination>
|
||||
<destination>{72fcf06d-f11f-4676-8b74-e13c7099f431}</destination>
|
||||
<destination>{29f3c62d-d7fe-466a-819c-c2601a3fca86}</destination>
|
||||
<destination>{833db348-b30c-4b06-a8cd-85366139b9d5}</destination>
|
||||
<destination>{9545c55c-24c9-437c-94ed-4413d1c86039}</destination>
|
||||
<destination>{3f66474a-9ca4-483e-ad8e-a396d24b1a28}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{8407ab9a-7499-49be-b919-40676d61c5bc}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e12ed482-7d2b-4a1f-af1b-c439e0145455}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{b459ce17-5635-445a-9f22-d7d020d952e9}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{c79b6c35-305d-4e66-a486-572ea830dd7e}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{bc8dbbf5-8a8c-40a7-a06c-540d382cea76}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{bc820023-ec2b-4521-807a-eab6b090fc2e}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{f0aafb85-1961-4d48-a8e0-a359dc573ff3}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{d6ddb3ed-542d-4e44-88a3-5f7ce9e4a7f7}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e8f45717-2161-49a0-bab8-61cfd02b43b5}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ce7a2d8b-2659-450a-8774-7b46bd6ea3c3}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{bd416c56-11cc-4fb0-bb69-3a9761424689}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{ced51b25-4fba-4399-87c2-76243e832f2c}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{1dda413c-f2b5-45aa-b18b-5121d9e50ed2}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b7e88d8a-b7d8-4c3e-a08f-e8539aca057f}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>6.5999999</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{186d493f-451e-4506-90c0-ac86f1d978fb}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{652b25dc-08f2-45a8-bff3-c3824ef9f625}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{69c4d5ee-f49f-46a3-be14-251d11467968}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{31b2c84b-8817-475b-8049-bb68c0e4ad60}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a4c7c859-cca4-4601-b7cc-0d6a0adbd2df}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.794999957</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{d55f4036-fd16-4284-9b39-4c04af120f23}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.29999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{120e6586-40fb-4d3d-9ad9-00269974c5a2}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{500f1161-5ece-4d4a-8c5f-bc8e30b77426}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{0af55298-119b-4d87-ae6d-7e6a0ffa882f}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{aa06d5df-37f5-40f4-a349-e5d2afb92eb3}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c6c96005-0a97-486b-b42a-743874eb3340}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{480b83c9-347d-49ed-95ac-07cbbecb30f0}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{967420ae-2705-46e5-9684-66e9b7807273}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c783b6f8-e6fd-4f85-9db2-4118a3032958}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{24eb7f20-2461-4f4e-8008-72f166ae0dd6}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{af796c8a-6fe8-4f5c-88a4-bb53a2a03f0a}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{f242110e-454b-46a1-a6d7-4c2dab144a26}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{72fcf06d-f11f-4676-8b74-e13c7099f431}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{29f3c62d-d7fe-466a-819c-c2601a3fca86}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{833db348-b30c-4b06-a8cd-85366139b9d5}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{9545c55c-24c9-437c-94ed-4413d1c86039}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3f66474a-9ca4-483e-ad8e-a396d24b1a28}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{e23d01ca-9dc7-4a3f-8aa1-c370f97965d5}">
|
||||
<property name="minimumDistance">
|
||||
<value>2</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="maximumDistance">
|
||||
<value>75</value>
|
||||
@@ -88,6 +88,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{e433b2c3-c785-4a1c-b442-a3852a45dd69}">
|
||||
<property name="volume">
|
||||
<value>4</value>
|
||||
</property>
|
||||
<property name="overridingInputFormat">
|
||||
<value>3</value>
|
||||
</property>
|
||||
@@ -146,7 +149,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{a720d672-e628-459a-9738-c8f9bbee55c1}">
|
||||
<property name="volume">
|
||||
<value>3.5</value>
|
||||
<value>6.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -181,7 +184,6 @@
|
||||
<object class="MixerBusEffectChain" id="{efa933aa-2985-443f-b5a0-84b32a469145}">
|
||||
<relationship name="effects">
|
||||
<destination>{d21b3e78-cdee-4351-9bd7-08926907b4fb}</destination>
|
||||
<destination>{c95160f3-ffe4-4723-912b-5f64c393bf06}</destination>
|
||||
<destination>{4e321d78-2402-4630-a207-51856415fe4d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
@@ -227,11 +229,7 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{d21b3e78-cdee-4351-9bd7-08926907b4fb}" />
|
||||
<object class="SpatialiserEffect" id="{c95160f3-ffe4-4723-912b-5f64c393bf06}" />
|
||||
<object class="PluginEffect" id="{4e321d78-2402-4630-a207-51856415fe4d}">
|
||||
<property name="bypass">
|
||||
<value>true</value>
|
||||
</property>
|
||||
<relationship name="plugin">
|
||||
<destination>{0285f1ec-d6bb-45f9-b911-6e4e07eedc55}</destination>
|
||||
</relationship>
|
||||
@@ -339,7 +337,7 @@
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -367,7 +365,7 @@
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -425,7 +423,7 @@
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
@@ -464,7 +462,7 @@
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
<value>10</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
@@ -475,7 +473,7 @@
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>60</value>
|
||||
<value>75</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>ArrowHit</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{00f9be59-1366-4d05-b750-a18d952067e6}">
|
||||
<property name="volume">
|
||||
<value>1.5</value>
|
||||
<value>4</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{bd117eeb-34bb-4880-8f14-c2b4499c4ccb}</destination>
|
||||
@@ -124,7 +124,7 @@
|
||||
<object class="MixerBusEffectChain" id="{bd117eeb-34bb-4880-8f14-c2b4499c4ccb}">
|
||||
<relationship name="effects">
|
||||
<destination>{5c57fb65-9a66-46d4-8293-c4f9669546aa}</destination>
|
||||
<destination>{5b27cba3-7882-40df-b739-d8216d369323}</destination>
|
||||
<destination>{4a7c89cb-d99a-4d94-b3aa-fa9b4de28725}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{3d1ab9c0-b312-4b4b-adb0-3f2fc2b81cff}" />
|
||||
@@ -174,7 +174,11 @@
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{0ad5f6f1-57fb-43a1-a714-f68968b41e1b}" />
|
||||
<object class="MixerBusFader" id="{5c57fb65-9a66-46d4-8293-c4f9669546aa}" />
|
||||
<object class="SpatialiserEffect" id="{5b27cba3-7882-40df-b739-d8216d369323}" />
|
||||
<object class="PluginEffect" id="{4a7c89cb-d99a-4d94-b3aa-fa9b4de28725}">
|
||||
<relationship name="plugin">
|
||||
<destination>{86933140-6520-4dd5-8313-534789a4b7d4}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{9805f702-5f64-43b0-ae3a-8375ff2fde2f}">
|
||||
<property name="position">
|
||||
<value>0.80000000000000004</value>
|
||||
@@ -195,4 +199,447 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{3cad6715-d678-4dc4-bf34-cc1d8eee0292}" />
|
||||
<object class="Plugin" id="{86933140-6520-4dd5-8313-534789a4b7d4}">
|
||||
<property name="identifier">
|
||||
<value>Steam Audio Spatializer</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{25d69f1b-3ccb-4ff5-946b-387b74af92df}</destination>
|
||||
<destination>{c0820721-ba97-420a-9ceb-d7a1ad1e8ae5}</destination>
|
||||
<destination>{a05f8518-2e76-4506-b1bf-4733d07ebaa3}</destination>
|
||||
<destination>{40800024-49b4-47a3-b258-d666a10a6e00}</destination>
|
||||
<destination>{189f8dfe-e711-4891-bc1c-024b3c87dc32}</destination>
|
||||
<destination>{57346fc3-16a5-453e-a8c0-96822913b87f}</destination>
|
||||
<destination>{00dfaeaa-70be-491a-b74e-e34b407643a6}</destination>
|
||||
<destination>{41874687-fa55-41d8-a3c8-28a596b3d2ca}</destination>
|
||||
<destination>{3d201b5e-bbd7-4503-a3b7-7eea60272fa8}</destination>
|
||||
<destination>{aa1d4be3-478b-4130-9993-d2aa7d46fd0b}</destination>
|
||||
<destination>{20d9d157-6fcf-48fe-b236-91ad557d372c}</destination>
|
||||
<destination>{0871d66c-bcda-4918-80cf-b40c6405a62b}</destination>
|
||||
<destination>{ccb764ce-f1fd-4066-81c6-92cc17c7d868}</destination>
|
||||
<destination>{37400daa-cbb4-4762-9bc8-9edc1735e13e}</destination>
|
||||
<destination>{61382277-38db-4ebe-a41b-71de5bd1bac0}</destination>
|
||||
<destination>{b6c1e2d5-dfb4-451c-9ba6-b661b8902b2f}</destination>
|
||||
<destination>{826b9920-b275-4b94-b216-8905ab690950}</destination>
|
||||
<destination>{6e9cfd95-9640-43d5-aa51-9a63a0182867}</destination>
|
||||
<destination>{2b0878e6-0d3b-420a-a684-ebd2c0ed2087}</destination>
|
||||
<destination>{8069c77a-6773-4e33-b477-8f7934f4fc7e}</destination>
|
||||
<destination>{719ce1d4-b795-4128-9b98-5be97ca574b6}</destination>
|
||||
<destination>{73cc7b84-1c43-46a1-81d2-da98bb04a84c}</destination>
|
||||
<destination>{20e4e5dc-dc6b-4512-8042-3cd1ebf1be34}</destination>
|
||||
<destination>{e5848c17-9a6c-473c-8560-d95d01f7f619}</destination>
|
||||
<destination>{8e40e127-5636-41f6-a25e-219ef9f2966e}</destination>
|
||||
<destination>{f6ca2631-4f6a-4926-815e-2ee72885e5a2}</destination>
|
||||
<destination>{c9e8bbfa-e401-434a-a51c-b1f19318080f}</destination>
|
||||
<destination>{a7540806-0741-4dad-bbd1-8bb17b6d6a20}</destination>
|
||||
<destination>{e5766625-5f7d-4292-84af-e6e441dc652b}</destination>
|
||||
<destination>{9c205399-5272-4899-b492-03bcfef87377}</destination>
|
||||
<destination>{ed810537-1611-46c6-b182-3152765385ba}</destination>
|
||||
<destination>{0bdde6b7-15f8-45a0-b6bf-c149380de867}</destination>
|
||||
<destination>{e5a57126-a44d-4997-852e-67dd4fae0030}</destination>
|
||||
<destination>{0dbb2f17-9a45-44ae-a953-e4a413eca880}</destination>
|
||||
<destination>{743e0c1b-3c4e-40af-914e-0d7ce6e77a98}</destination>
|
||||
<destination>{7baccf3c-ec35-4c69-8739-5889a5403d63}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{25d69f1b-3ccb-4ff5-946b-387b74af92df}">
|
||||
<property name="name">
|
||||
<value>SourcePos</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{c0820721-ba97-420a-9ceb-d7a1ad1e8ae5}">
|
||||
<property name="name">
|
||||
<value>OverallGain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{a05f8518-2e76-4506-b1bf-4733d07ebaa3}">
|
||||
<property name="name">
|
||||
<value>ApplyDA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{40800024-49b4-47a3-b258-d666a10a6e00}">
|
||||
<property name="name">
|
||||
<value>ApplyAA</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{189f8dfe-e711-4891-bc1c-024b3c87dc32}">
|
||||
<property name="name">
|
||||
<value>ApplyDir</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{57346fc3-16a5-453e-a8c0-96822913b87f}">
|
||||
<property name="name">
|
||||
<value>ApplyOccl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{00dfaeaa-70be-491a-b74e-e34b407643a6}">
|
||||
<property name="name">
|
||||
<value>ApplyTrans</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{41874687-fa55-41d8-a3c8-28a596b3d2ca}">
|
||||
<property name="name">
|
||||
<value>ApplyRefl</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{3d201b5e-bbd7-4503-a3b7-7eea60272fa8}">
|
||||
<property name="name">
|
||||
<value>ApplyPath</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{aa1d4be3-478b-4130-9993-d2aa7d46fd0b}">
|
||||
<property name="name">
|
||||
<value>Interpolation</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{20d9d157-6fcf-48fe-b236-91ad557d372c}">
|
||||
<property name="name">
|
||||
<value>DistAtt</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0871d66c-bcda-4918-80cf-b40c6405a62b}">
|
||||
<property name="name">
|
||||
<value>DAType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>4</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{ccb764ce-f1fd-4066-81c6-92cc17c7d868}">
|
||||
<property name="name">
|
||||
<value>DAMinDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{37400daa-cbb4-4762-9bc8-9edc1735e13e}">
|
||||
<property name="name">
|
||||
<value>DAMaxDist</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>20</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{61382277-38db-4ebe-a41b-71de5bd1bac0}">
|
||||
<property name="name">
|
||||
<value>AirAbsLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{b6c1e2d5-dfb4-451c-9ba6-b661b8902b2f}">
|
||||
<property name="name">
|
||||
<value>AirAbsMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{826b9920-b275-4b94-b216-8905ab690950}">
|
||||
<property name="name">
|
||||
<value>AirAbsHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{6e9cfd95-9640-43d5-aa51-9a63a0182867}">
|
||||
<property name="name">
|
||||
<value>Directivity</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{2b0878e6-0d3b-420a-a684-ebd2c0ed2087}">
|
||||
<property name="name">
|
||||
<value>DipoleWeight</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0.299999982</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8069c77a-6773-4e33-b477-8f7934f4fc7e}">
|
||||
<property name="name">
|
||||
<value>DipolePower</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1.67999995</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{719ce1d4-b795-4128-9b98-5be97ca574b6}">
|
||||
<property name="name">
|
||||
<value>Occlusion</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{73cc7b84-1c43-46a1-81d2-da98bb04a84c}">
|
||||
<property name="name">
|
||||
<value>TransType</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{20e4e5dc-dc6b-4512-8042-3cd1ebf1be34}">
|
||||
<property name="name">
|
||||
<value>TransLow</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{e5848c17-9a6c-473c-8560-d95d01f7f619}">
|
||||
<property name="name">
|
||||
<value>TransMid</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{8e40e127-5636-41f6-a25e-219ef9f2966e}">
|
||||
<property name="name">
|
||||
<value>TransHigh</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{f6ca2631-4f6a-4926-815e-2ee72885e5a2}">
|
||||
<property name="name">
|
||||
<value>DirMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{c9e8bbfa-e401-434a-a51c-b1f19318080f}">
|
||||
<property name="name">
|
||||
<value>ReflBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{a7540806-0741-4dad-bbd1-8bb17b6d6a20}">
|
||||
<property name="name">
|
||||
<value>ReflMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{e5766625-5f7d-4292-84af-e6e441dc652b}">
|
||||
<property name="name">
|
||||
<value>PathBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{9c205399-5272-4899-b492-03bcfef87377}">
|
||||
<property name="name">
|
||||
<value>PathMixLevel</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ed810537-1611-46c6-b182-3152765385ba}">
|
||||
<property name="name">
|
||||
<value>SimOutputs</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{0bdde6b7-15f8-45a0-b6bf-c149380de867}">
|
||||
<property name="name">
|
||||
<value>DirectBinaural</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>true</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{e5a57126-a44d-4997-852e-67dd4fae0030}">
|
||||
<property name="name">
|
||||
<value>DistRange</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-6</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{0dbb2f17-9a45-44ae-a953-e4a413eca880}">
|
||||
<property name="name">
|
||||
<value>SimOutHandle</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>10000</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="IntPluginParameter" id="{743e0c1b-3c4e-40af-914e-0d7ce6e77a98}">
|
||||
<property name="name">
|
||||
<value>OutputFormat</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="minimumValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="maximumValue">
|
||||
<value>2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="BoolPluginParameter" id="{7baccf3c-ec35-4c69-8739-5889a5403d63}">
|
||||
<property name="name">
|
||||
<value>PathNormEQ</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>false</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{7b5a0b07-8fec-4444-9dca-3f0988ab2f8f}">
|
||||
<property name="volume">
|
||||
<value>3</value>
|
||||
<value>5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{2ba58871-ac5a-471c-a556-5d7317fff71b}</destination>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<value>AmbisonicTesting</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>1</value>
|
||||
<value>3</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{e5bf65ee-d6e7-4aa2-8f58-f527d31905fa}</destination>
|
||||
@@ -156,7 +156,6 @@
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{2ce88739-3ddb-414c-b02f-a1e3492a29f0}">
|
||||
<relationship name="effects">
|
||||
<destination>{ed41e156-0db5-4cd1-ac43-9df3cb00997b}</destination>
|
||||
<destination>{9c2ddb63-14e0-45fd-b576-15f001aee7ff}</destination>
|
||||
<destination>{e7d10720-a5d3-4f41-a65b-24b2283137d2}</destination>
|
||||
</relationship>
|
||||
@@ -180,11 +179,6 @@
|
||||
<destination>{bf6e3a54-d688-4653-8fea-680376e81de3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="PluginEffect" id="{ed41e156-0db5-4cd1-ac43-9df3cb00997b}">
|
||||
<relationship name="plugin">
|
||||
<destination>{d0afea29-a68d-48b1-adb6-281476e30de2}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{9c2ddb63-14e0-45fd-b576-15f001aee7ff}" />
|
||||
<object class="MultibandEqEffect" id="{e7d10720-a5d3-4f41-a65b-24b2283137d2}">
|
||||
<property name="frequencyA">
|
||||
@@ -227,16 +221,6 @@
|
||||
<value>-11.498188</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="Plugin" id="{d0afea29-a68d-48b1-adb6-281476e30de2}">
|
||||
<property name="identifier">
|
||||
<value>MetaXRAudio Ambisonics</value>
|
||||
</property>
|
||||
<relationship name="pluginParameters">
|
||||
<destination>{a43f74da-e6c4-4b38-bc1b-d5eec08db0d7}</destination>
|
||||
<destination>{ad3437ed-c62e-4118-a0ea-cec43242445b}</destination>
|
||||
<destination>{c8b85373-5975-4acc-89fc-1dfb9ff19c76}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Automator" id="{4f0234cb-53aa-497d-b938-6bf933238cfa}">
|
||||
<property name="nameOfPropertyBeingAutomated">
|
||||
<value>frequencyA</value>
|
||||
@@ -245,35 +229,6 @@
|
||||
<destination>{9379e6eb-4743-405c-9b34-591b973bc093}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{a43f74da-e6c4-4b38-bc1b-d5eec08db0d7}">
|
||||
<property name="name">
|
||||
<value>3D Attributes</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-2</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="DataPluginParameter" id="{ad3437ed-c62e-4118-a0ea-cec43242445b}">
|
||||
<property name="name">
|
||||
<value>Overall Gain</value>
|
||||
</property>
|
||||
<property name="value" />
|
||||
<property name="dataType">
|
||||
<value>-1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FloatPluginParameter" id="{c8b85373-5975-4acc-89fc-1dfb9ff19c76}">
|
||||
<property name="name">
|
||||
<value>Mode</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curve">
|
||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationCurve" id="{9379e6eb-4743-405c-9b34-591b973bc093}">
|
||||
<relationship name="parameter">
|
||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}">
|
||||
<property name="volume">
|
||||
<value>2.5</value>
|
||||
<value>3.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{993e44e3-d0b9-4093-981f-110ce886e606}</destination>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<value>-1</value>
|
||||
</property>
|
||||
<property name="initialValue">
|
||||
<value>-0.5</value>
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
|
||||
@@ -24,10 +24,18 @@
|
||||
"name": "moRdekai",
|
||||
"score": 451.0
|
||||
},
|
||||
{
|
||||
"name": "rauio",
|
||||
"score": 450.0
|
||||
},
|
||||
{
|
||||
"name": "frtyyQx",
|
||||
"score": 447.0
|
||||
},
|
||||
{
|
||||
"name": "yty",
|
||||
"score": 446.0
|
||||
},
|
||||
{
|
||||
"name": "terrrffgggjh",
|
||||
"score": 431.0
|
||||
@@ -44,21 +52,13 @@
|
||||
"name": " ",
|
||||
"score": 413.0
|
||||
},
|
||||
{
|
||||
"name": "timo",
|
||||
"score": 412.0
|
||||
},
|
||||
{
|
||||
"name": "Dabest",
|
||||
"score": 407.0
|
||||
},
|
||||
{
|
||||
"name": "Reinhardt",
|
||||
"score": 394.0
|
||||
},
|
||||
{
|
||||
"name": "tgyhn",
|
||||
"score": 376.0
|
||||
},
|
||||
{
|
||||
"name": "rrc",
|
||||
"score": 372.0
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user