forked from cgvr/DeltaVR
Merge branch 'SamWorkset' of https://cgvrgit.ulno.net/cgvr/DeltaVR into SamWorkset
This commit is contained in:
Binary file not shown.
@@ -1,6 +1,3 @@
|
|||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Runtime.Remoting.Messaging;
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.XR.Content.Interaction;
|
using UnityEngine.XR.Content.Interaction;
|
||||||
using FMOD.Studio;
|
using FMOD.Studio;
|
||||||
@@ -9,28 +6,23 @@ public class AlarmTrigger : MonoBehaviour
|
|||||||
{
|
{
|
||||||
public XRPushButton PushButton;
|
public XRPushButton PushButton;
|
||||||
|
|
||||||
private EventInstance RoomHum;
|
|
||||||
private EventInstance AlarmSound;
|
private EventInstance AlarmSound;
|
||||||
|
|
||||||
private FirstPersonOcclusion occlusion;
|
private FirstPersonOcclusion occlusion;
|
||||||
|
|
||||||
private void Awake()
|
private void Awake()
|
||||||
{
|
{
|
||||||
RoomHum = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomHumming); //initialise the instance
|
|
||||||
|
|
||||||
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
|
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
|
||||||
|
|
||||||
occlusion = GetComponent<FirstPersonOcclusion>(); //apply occlusion
|
occlusion = GetComponent<FirstPersonOcclusion>(); //apply occlusion
|
||||||
if (occlusion != null)
|
if (occlusion != null)
|
||||||
{
|
{
|
||||||
occlusion.InitialiseWithInstance(RoomHum);
|
occlusion.InitialiseWithInstance(AlarmSound);
|
||||||
//occlusion.InitialiseWithInstance(AlarmSound);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
//start playing the Server overall sound
|
|
||||||
//RoomHum.start();
|
|
||||||
|
|
||||||
if (PushButton != null)
|
if (PushButton != null)
|
||||||
{
|
{
|
||||||
@@ -44,21 +36,13 @@ public class AlarmTrigger : MonoBehaviour
|
|||||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, PushButton.gameObject); //3d oneshot instance
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, PushButton.gameObject); //3d oneshot instance
|
||||||
Debug.Log("Alarm button Pressed!");
|
Debug.Log("Alarm button Pressed!");
|
||||||
|
|
||||||
RoomHum.stop(FMOD.Studio.STOP_MODE.ALLOWFADEOUT);
|
|
||||||
|
|
||||||
AlarmSound.start();
|
AlarmSound.start();
|
||||||
|
|
||||||
}
|
}
|
||||||
void Update()
|
void Update()
|
||||||
{
|
{
|
||||||
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating 3d attributes
|
|
||||||
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating 3d attributes
|
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating 3d attributes
|
||||||
|
|
||||||
// If alarm finished, restart hum once
|
|
||||||
if (!AudioManager.IsPlaying(AlarmSound) && !AudioManager.IsPlaying(RoomHum))
|
|
||||||
{
|
|
||||||
//RoomHum.start();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -152,4 +152,4 @@ MonoBehaviour:
|
|||||||
PlayerOcclusionWidening: 1
|
PlayerOcclusionWidening: 1
|
||||||
OcclusionLayer:
|
OcclusionLayer:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Bits: 268442624
|
m_Bits: 268438528
|
||||||
|
|||||||
Binary file not shown.
@@ -231,6 +231,12 @@ public class AudioManager : MonoBehaviour
|
|||||||
RuntimeManager.StudioSystem.setParameterByName(parameterName, value);
|
RuntimeManager.StudioSystem.setParameterByName(parameterName, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void GetGlobalParameter(string parameterName, out float value)
|
||||||
|
{
|
||||||
|
RuntimeManager.StudioSystem.getParameterByName(parameterName, out value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//=====//
|
//=====//
|
||||||
//Some functions for initialising music, perhaps there will be a need in the future...
|
//Some functions for initialising music, perhaps there will be a need in the future...
|
||||||
//=====//
|
//=====//
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ public class FMODEvents : MonoBehaviour
|
|||||||
[field: SerializeField] public EventReference DefaultGrab { get; private set; }
|
[field: SerializeField] public EventReference DefaultGrab { get; private set; }
|
||||||
[field: SerializeField] public EventReference BowGrab { get; private set; }
|
[field: SerializeField] public EventReference BowGrab { get; private set; }
|
||||||
[field: SerializeField] public EventReference Spray { get; private set; }
|
[field: SerializeField] public EventReference Spray { get; private set; }
|
||||||
|
[field: SerializeField] public EventReference Coughing { get; private set; }
|
||||||
|
|
||||||
[field: Header("CAR")]
|
[field: Header("CAR")]
|
||||||
[field: SerializeField] public EventReference DoorOpen { get; private set; }
|
[field: SerializeField] public EventReference DoorOpen { get; private set; }
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using UnityEngine;
|
|||||||
using FMODUnity;
|
using FMODUnity;
|
||||||
using FMOD.Studio;
|
using FMOD.Studio;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic; // ADDED
|
using System.Collections.Generic;
|
||||||
|
|
||||||
public class FirstPersonOcclusion : MonoBehaviour
|
public class FirstPersonOcclusion : MonoBehaviour
|
||||||
{
|
{
|
||||||
@@ -26,8 +26,6 @@ public class FirstPersonOcclusion : MonoBehaviour
|
|||||||
private Color colour;
|
private Color colour;
|
||||||
|
|
||||||
private bool initialisedExternally = false;
|
private bool initialisedExternally = false;
|
||||||
|
|
||||||
// ADDED: now stores ALL event instances that must be occluded
|
|
||||||
private List<EventInstance> managedInstances = new List<EventInstance>();
|
private List<EventInstance> managedInstances = new List<EventInstance>();
|
||||||
public void InitialiseWithInstance(EventInstance instance)
|
public void InitialiseWithInstance(EventInstance instance)
|
||||||
{
|
{
|
||||||
@@ -42,13 +40,12 @@ public class FirstPersonOcclusion : MonoBehaviour
|
|||||||
|
|
||||||
//instance.setParameterByName("Occlusion", 1f, true);
|
//instance.setParameterByName("Occlusion", 1f, true);
|
||||||
|
|
||||||
managedInstances.Add(AudioOccluded); // ADDED
|
managedInstances.Add(AudioOccluded);
|
||||||
|
|
||||||
AudioOccluded.getDescription(out AudioDes);
|
AudioOccluded.getDescription(out AudioDes);
|
||||||
AudioDes.getMinMaxDistance(out float min, out MaxDistance);
|
AudioDes.getMinMaxDistance(out float min, out MaxDistance);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ADDED: allows adding extra FMOD instances for occlusion
|
|
||||||
public void AddInstance(EventInstance instance)
|
public void AddInstance(EventInstance instance)
|
||||||
{
|
{
|
||||||
if (instance.isValid())
|
if (instance.isValid())
|
||||||
@@ -190,6 +187,11 @@ public class FirstPersonOcclusion : MonoBehaviour
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public bool HasInstance(EventInstance instance)
|
||||||
|
{
|
||||||
|
return managedInstances.Contains(instance);
|
||||||
|
}
|
||||||
|
|
||||||
private void SetParameter()
|
private void SetParameter()
|
||||||
{
|
{
|
||||||
float occlusionValue = lineCastHitCount / 11;
|
float occlusionValue = lineCastHitCount / 11;
|
||||||
|
|||||||
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="AudioFile" id="{038b55ce-57ad-4210-a77d-264de7dd9c85}">
|
||||||
|
<property name="assetPath">
|
||||||
|
<value>PrintingFilament2 1.wav</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyInKHz">
|
||||||
|
<value>96</value>
|
||||||
|
</property>
|
||||||
|
<property name="channelCount">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>5.6356562500000003</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masterAssetFolder">
|
||||||
|
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="AudioFile" id="{de352de2-ad70-4809-9f6b-1cc01f121d8a}">
|
||||||
|
<property name="assetPath">
|
||||||
|
<value>PrintingFilament2.wav</value>
|
||||||
|
</property>
|
||||||
|
<property name="isStreaming">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyInKHz">
|
||||||
|
<value>96</value>
|
||||||
|
</property>
|
||||||
|
<property name="channelCount">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>16.280791666666666</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masterAssetFolder">
|
||||||
|
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -283,7 +283,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -292,7 +291,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -372,7 +370,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{9024c426-22dd-4b85-a1c7-25b1e4b2705c}">
|
<object class="BoolPluginParameter" id="{9024c426-22dd-4b85-a1c7-25b1e4b2705c}">
|
||||||
@@ -584,7 +582,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{7e92f7ee-491d-40a1-8f2a-52c98b4bcc43}">
|
<object class="FloatPluginParameter" id="{7e92f7ee-491d-40a1-8f2a-52c98b4bcc43}">
|
||||||
@@ -621,7 +619,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -638,7 +635,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -468,7 +468,7 @@
|
|||||||
<value>ApplyOccl</value>
|
<value>ApplyOccl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -482,7 +482,7 @@
|
|||||||
<value>ApplyTrans</value>
|
<value>ApplyTrans</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -496,7 +496,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{96e694f8-150c-4aea-a890-308e32f4e4e7}">
|
<object class="BoolPluginParameter" id="{96e694f8-150c-4aea-a890-308e32f4e4e7}">
|
||||||
@@ -708,7 +708,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{d5ba991c-e2a1-435c-90eb-093664d20e99}">
|
<object class="FloatPluginParameter" id="{d5ba991c-e2a1-435c-90eb-093664d20e99}">
|
||||||
|
|||||||
@@ -331,7 +331,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -340,7 +339,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -669,7 +667,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -686,7 +683,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -255,7 +255,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -264,7 +263,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -344,7 +342,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{65553e1f-13a0-4c78-be72-9601d472bfd3}">
|
<object class="BoolPluginParameter" id="{65553e1f-13a0-4c78-be72-9601d472bfd3}">
|
||||||
@@ -556,7 +554,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{05bddb73-47f6-4496-82a2-da38a0a982e2}">
|
<object class="FloatPluginParameter" id="{05bddb73-47f6-4496-82a2-da38a0a982e2}">
|
||||||
@@ -593,7 +591,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -610,7 +607,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -23,6 +23,8 @@
|
|||||||
<destination>{c0ccf943-b97a-4e00-9551-a070e5c1a421}</destination>
|
<destination>{c0ccf943-b97a-4e00-9551-a070e5c1a421}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="markerTracks">
|
<relationship name="markerTracks">
|
||||||
|
<destination>{20bb21f4-4b37-4514-877b-4352e1f802c9}</destination>
|
||||||
|
<destination>{8c561cea-6ba6-41fb-8f90-02248850b209}</destination>
|
||||||
<destination>{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}</destination>
|
<destination>{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="groupTracks">
|
<relationship name="groupTracks">
|
||||||
@@ -36,6 +38,7 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameters">
|
<relationship name="parameters">
|
||||||
<destination>{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}</destination>
|
<destination>{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}</destination>
|
||||||
|
<destination>{d94aaf74-c4a1-4d81-ae5c-911a053f5376}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
@@ -54,6 +57,10 @@
|
|||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
|
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
|
||||||
<destination>{3ba726b1-1994-4893-8d4f-0c0c4da4dc52}</destination>
|
<destination>{3ba726b1-1994-4893-8d4f-0c0c4da4dc52}</destination>
|
||||||
|
<destination>{6bc70491-9ebc-498a-967d-d0cfd4e7317e}</destination>
|
||||||
|
<destination>{72aad3a2-e63f-4e23-80b1-4c41bd01e9de}</destination>
|
||||||
|
<destination>{320aba20-2e4e-40b9-a42d-4b7d4f914ddf}</destination>
|
||||||
|
<destination>{09fcee23-56e5-44b9-8b25-2680bed0701d}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
||||||
@@ -71,36 +78,62 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{c0ccf943-b97a-4e00-9551-a070e5c1a421}">
|
<object class="EventAutomatableProperties" id="{c0ccf943-b97a-4e00-9551-a070e5c1a421}">
|
||||||
|
<property name="minimumDistance">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>9</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="MarkerTrack" id="{20bb21f4-4b37-4514-877b-4352e1f802c9}" />
|
||||||
|
<object class="MarkerTrack" id="{8c561cea-6ba6-41fb-8f90-02248850b209}" />
|
||||||
<object class="MarkerTrack" id="{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}" />
|
<object class="MarkerTrack" id="{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}" />
|
||||||
<object class="GroupTrack" id="{9f8483f9-5685-4483-82f3-bca2da23c465}">
|
<object class="GroupTrack" id="{9f8483f9-5685-4483-82f3-bca2da23c465}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{4073af66-6438-4ced-b640-3d080b29f862}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{4aca6c13-361f-4739-a26a-e65479b2650c}</destination>
|
<destination>{4aca6c13-361f-4739-a26a-e65479b2650c}</destination>
|
||||||
<destination>{54e94703-cd10-4aa4-b464-2b7fef99d424}</destination>
|
<destination>{54e94703-cd10-4aa4-b464-2b7fef99d424}</destination>
|
||||||
<destination>{410d9824-21fd-49fe-9df0-9b48630de62d}</destination>
|
<destination>{410d9824-21fd-49fe-9df0-9b48630de62d}</destination>
|
||||||
|
<destination>{2d0140b1-fe86-49f9-9442-7a023f39f4a6}</destination>
|
||||||
|
<destination>{233f6c9d-3db9-4eec-a3e0-1da2d8ea417e}</destination>
|
||||||
|
<destination>{a82da4b7-e214-44c5-988d-0ce56dd2a901}</destination>
|
||||||
|
<destination>{6957b6e2-7a5b-4f0e-8ab8-15ef8a4ef992}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{21fdb6b4-bf32-4031-9047-26e50d305624}</destination>
|
<destination>{21fdb6b4-bf32-4031-9047-26e50d305624}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="GroupTrack" id="{5b76c0ab-42d6-4499-b1db-46869bba2921}">
|
<object class="GroupTrack" id="{5b76c0ab-42d6-4499-b1db-46869bba2921}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{43aa97de-1020-4c48-937d-f3048d032c30}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{f77043a7-b24a-409c-a16f-6934285f0a2d}</destination>
|
<destination>{f77043a7-b24a-409c-a16f-6934285f0a2d}</destination>
|
||||||
<destination>{bbb583f9-87a7-4893-bd8b-4369e34d14c4}</destination>
|
<destination>{bbb583f9-87a7-4893-bd8b-4369e34d14c4}</destination>
|
||||||
<destination>{8df8f8fe-bb9d-45f0-90bf-98ca589e2991}</destination>
|
<destination>{8df8f8fe-bb9d-45f0-90bf-98ca589e2991}</destination>
|
||||||
|
<destination>{b7ec8a97-5ecd-4d84-a7ae-4673615ab9dd}</destination>
|
||||||
|
<destination>{9d4d403b-b37e-4551-8af1-d3c37970533b}</destination>
|
||||||
|
<destination>{a9714964-a28f-4be6-b474-6ee3b0fa2650}</destination>
|
||||||
|
<destination>{2658d5d3-9b5b-4c24-b16d-5be7f197e4f7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{467d92d2-bd8b-403f-bc8d-a8ae3847cbe8}</destination>
|
<destination>{467d92d2-bd8b-403f-bc8d-a8ae3847cbe8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="GroupTrack" id="{d2b9c35e-25de-47d6-b8af-f76adbcf9b9d}">
|
<object class="GroupTrack" id="{d2b9c35e-25de-47d6-b8af-f76adbcf9b9d}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{94390eab-92f2-40a1-a9f2-8e3867221795}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}</destination>
|
<destination>{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}</destination>
|
||||||
<destination>{3d7a3a98-7e24-45c4-a85a-48627e53c92b}</destination>
|
<destination>{3d7a3a98-7e24-45c4-a85a-48627e53c92b}</destination>
|
||||||
<destination>{b2f181eb-922d-4228-9e1f-f3ad9f9f36ef}</destination>
|
<destination>{b2f181eb-922d-4228-9e1f-f3ad9f9f36ef}</destination>
|
||||||
|
<destination>{437c24cc-7d69-4ffb-b405-cee8f21546f5}</destination>
|
||||||
|
<destination>{c718bd66-70e6-45e6-af8d-75ff2e55c25b}</destination>
|
||||||
|
<destination>{e21cfb8d-5367-43d0-b0ac-0b96adf600ed}</destination>
|
||||||
|
<destination>{fae501c0-88f0-4689-9219-39623068be8f}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{fea2c8c1-3229-41fc-8177-746e813179fc}</destination>
|
<destination>{fea2c8c1-3229-41fc-8177-746e813179fc}</destination>
|
||||||
@@ -110,6 +143,10 @@
|
|||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{b69a9e6e-1398-4530-a996-938ecc5a0c08}</destination>
|
<destination>{b69a9e6e-1398-4530-a996-938ecc5a0c08}</destination>
|
||||||
<destination>{f43c0c06-a2e5-4223-a181-c04ff95ccb52}</destination>
|
<destination>{f43c0c06-a2e5-4223-a181-c04ff95ccb52}</destination>
|
||||||
|
<destination>{1c92ae91-c75a-435e-aebb-1c5547ee11b7}</destination>
|
||||||
|
<destination>{da9f1051-8907-4e31-916e-35c904fd30a3}</destination>
|
||||||
|
<destination>{ffcd1838-d908-48f1-a630-9069744d0abe}</destination>
|
||||||
|
<destination>{b7e07763-adb1-44e7-86cb-24668c985b5e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{d6f26609-90ec-4a92-a6be-708ec2f94940}</destination>
|
<destination>{d6f26609-90ec-4a92-a6be-708ec2f94940}</destination>
|
||||||
@@ -123,6 +160,11 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="markers">
|
<relationship name="markers">
|
||||||
<destination>{663b1d7d-7159-4547-81a6-a4d33b9690be}</destination>
|
<destination>{663b1d7d-7159-4547-81a6-a4d33b9690be}</destination>
|
||||||
|
<destination>{7dce18a1-0f44-4c50-bb1c-cc32adaa520a}</destination>
|
||||||
|
<destination>{00518934-ab2c-4402-8f22-a775dcf51df1}</destination>
|
||||||
|
<destination>{470dd32f-bed8-47e7-a5d9-0cc370616d20}</destination>
|
||||||
|
<destination>{5bc30280-42b5-4c30-8e54-d38cc24749c6}</destination>
|
||||||
|
<destination>{7c5a067c-c483-4c1e-9344-91006bee5f23}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="ParameterProxy" id="{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}">
|
<object class="ParameterProxy" id="{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}">
|
||||||
@@ -130,6 +172,11 @@
|
|||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{d94aaf74-c4a1-4d81-ae5c-911a053f5376}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}">
|
<object class="EventMixerMaster" id="{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>2.5</value>
|
<value>2.5</value>
|
||||||
@@ -173,18 +220,49 @@
|
|||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{6bc70491-9ebc-498a-967d-d0cfd4e7317e}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{72aad3a2-e63f-4e23-80b1-4c41bd01e9de}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{320aba20-2e4e-40b9-a42d-4b7d4f914ddf}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{09fcee23-56e5-44b9-8b25-2680bed0701d}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{ebae36f1-d458-48c5-a1ab-e4f72d8e45a4}">
|
<object class="MixerBusEffectChain" id="{ebae36f1-d458-48c5-a1ab-e4f72d8e45a4}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{bcff4105-84b2-4029-ab05-ee40499bd6d7}</destination>
|
<destination>{bcff4105-84b2-4029-ab05-ee40499bd6d7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{24174714-86a5-40f1-8b02-9281c92d49d5}" />
|
<object class="MixerBusPanner" id="{24174714-86a5-40f1-8b02-9281c92d49d5}" />
|
||||||
|
<object class="AutomationTrack" id="{4073af66-6438-4ced-b640-3d080b29f862}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{c7d5db51-5cc7-4a96-aa9b-b0ac614b20b4}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="SingleSound" id="{4aca6c13-361f-4739-a26a-e65479b2650c}">
|
<object class="SingleSound" id="{4aca6c13-361f-4739-a26a-e65479b2650c}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>56.520000000000003</value>
|
<value>56.520000000000003</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="fadeInCurve">
|
<relationship name="automators">
|
||||||
<destination>{0f0b33dd-1c3e-4ae5-aafd-b78df1fb3fb3}</destination>
|
<destination>{c7d5db51-5cc7-4a96-aa9b-b0ac614b20b4}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{57fca2cf-8680-4984-a89f-12539cc9bdc4}</destination>
|
<destination>{57fca2cf-8680-4984-a89f-12539cc9bdc4}</destination>
|
||||||
@@ -206,6 +284,35 @@
|
|||||||
<destination>{5f55fe2b-2a97-4db0-87ac-fbd26639bfd5}</destination>
|
<destination>{5f55fe2b-2a97-4db0-87ac-fbd26639bfd5}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{2d0140b1-fe86-49f9-9442-7a023f39f4a6}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{b19568c5-743c-4995-bec3-affe1a777a99}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{233f6c9d-3db9-4eec-a3e0-1da2d8ea417e}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{a82da4b7-e214-44c5-988d-0ce56dd2a901}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{6957b6e2-7a5b-4f0e-8ab8-15ef8a4ef992}">
|
||||||
|
<property name="start">
|
||||||
|
<value>0.45000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.55000000000000004</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{21fdb6b4-bf32-4031-9047-26e50d305624}">
|
<object class="EventMixerGroup" id="{21fdb6b4-bf32-4031-9047-26e50d305624}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-2.5</value>
|
<value>-2.5</value>
|
||||||
@@ -223,6 +330,11 @@
|
|||||||
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{43aa97de-1020-4c48-937d-f3048d032c30}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{5bbdca19-de14-4b61-b3bb-38daed221b8d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{f77043a7-b24a-409c-a16f-6934285f0a2d}">
|
<object class="TransitionSourceSound" id="{f77043a7-b24a-409c-a16f-6934285f0a2d}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -240,13 +352,42 @@
|
|||||||
<property name="length">
|
<property name="length">
|
||||||
<value>56.520000000000003</value>
|
<value>56.520000000000003</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="fadeInCurve">
|
<relationship name="automators">
|
||||||
<destination>{cc01412a-a4dc-4991-bc3e-ef356fb0b349}</destination>
|
<destination>{5bbdca19-de14-4b61-b3bb-38daed221b8d}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{d05a7aa5-e7bb-498e-b623-978266520dfa}</destination>
|
<destination>{d05a7aa5-e7bb-498e-b623-978266520dfa}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{b7ec8a97-5ecd-4d84-a7ae-4673615ab9dd}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{8870a695-bd10-4a8d-85bc-f232b063a26c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{9d4d403b-b37e-4551-8af1-d3c37970533b}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{a9714964-a28f-4be6-b474-6ee3b0fa2650}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{2658d5d3-9b5b-4c24-b16d-5be7f197e4f7}">
|
||||||
|
<property name="start">
|
||||||
|
<value>0.45000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.55000000000000004</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{467d92d2-bd8b-403f-bc8d-a8ae3847cbe8}">
|
<object class="EventMixerGroup" id="{467d92d2-bd8b-403f-bc8d-a8ae3847cbe8}">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 2</value>
|
<value>Audio 2</value>
|
||||||
@@ -261,6 +402,11 @@
|
|||||||
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
<destination>{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{94390eab-92f2-40a1-a9f2-8e3867221795}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{614eb98f-eaa0-4e1e-8f79-8d86d0dc6a54}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}">
|
<object class="TransitionSourceSound" id="{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>2</value>
|
<value>2</value>
|
||||||
@@ -281,13 +427,42 @@
|
|||||||
<property name="length">
|
<property name="length">
|
||||||
<value>56.520000000000003</value>
|
<value>56.520000000000003</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="fadeInCurve">
|
<relationship name="automators">
|
||||||
<destination>{8db89fd1-87c6-48f9-bc35-b7c9b2d72e03}</destination>
|
<destination>{614eb98f-eaa0-4e1e-8f79-8d86d0dc6a54}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{08d949ef-40b8-438c-9c78-2545688763dd}</destination>
|
<destination>{08d949ef-40b8-438c-9c78-2545688763dd}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{437c24cc-7d69-4ffb-b405-cee8f21546f5}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{14f584c0-01c0-491d-a6e2-b0ccdda2c17b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{c718bd66-70e6-45e6-af8d-75ff2e55c25b}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{e21cfb8d-5367-43d0-b0ac-0b96adf600ed}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{fae501c0-88f0-4689-9219-39623068be8f}">
|
||||||
|
<property name="start">
|
||||||
|
<value>0.45000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.55000000000000004</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{fea2c8c1-3229-41fc-8177-746e813179fc}">
|
<object class="EventMixerGroup" id="{fea2c8c1-3229-41fc-8177-746e813179fc}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-7</value>
|
<value>-7</value>
|
||||||
@@ -321,6 +496,32 @@
|
|||||||
<destination>{55eb3670-5b7e-411c-9799-8c6053c2a271}</destination>
|
<destination>{55eb3670-5b7e-411c-9799-8c6053c2a271}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{1c92ae91-c75a-435e-aebb-1c5547ee11b7}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{da9f1051-8907-4e31-916e-35c904fd30a3}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{ffcd1838-d908-48f1-a630-9069744d0abe}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{b7e07763-adb1-44e7-86cb-24668c985b5e}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{d6f26609-90ec-4a92-a6be-708ec2f94940}">
|
<object class="EventMixerGroup" id="{d6f26609-90ec-4a92-a6be-708ec2f94940}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
@@ -355,6 +556,94 @@
|
|||||||
<destination>{9e9e30a8-cc97-4cc4-9ecb-c3df0979376d}</destination>
|
<destination>{9e9e30a8-cc97-4cc4-9ecb-c3df0979376d}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="NamedMarker" id="{7dce18a1-0f44-4c50-bb1c-cc32adaa520a}">
|
||||||
|
<property name="position">
|
||||||
|
<value>58</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>AlarmOn</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionRegion" id="{00518934-ab2c-4402-8f22-a775dcf51df1}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>56.520000000000003</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{8c561cea-6ba6-41fb-8f90-02248850b209}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="transitionTimeline">
|
||||||
|
<destination>{9f42511e-56fb-4cb1-abcc-6f21fb2cd3ae}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="destination">
|
||||||
|
<destination>{7dce18a1-0f44-4c50-bb1c-cc32adaa520a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="triggerConditions">
|
||||||
|
<destination>{0821fc72-96d2-46d0-8ae9-d1316b57ee31}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="NamedMarker" id="{470dd32f-bed8-47e7-a5d9-0cc370616d20}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>AlarmOff</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="LoopRegion" id="{5bc30280-42b5-4c30-8e54-d38cc24749c6}">
|
||||||
|
<property name="position">
|
||||||
|
<value>58</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{8c561cea-6ba6-41fb-8f90-02248850b209}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionRegion" id="{7c5a067c-c483-4c1e-9344-91006bee5f23}">
|
||||||
|
<property name="position">
|
||||||
|
<value>58</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{20bb21f4-4b37-4514-877b-4352e1f802c9}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="transitionTimeline">
|
||||||
|
<destination>{f4390488-0fcb-4112-909c-59fe84841d68}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="destination">
|
||||||
|
<destination>{470dd32f-bed8-47e7-a5d9-0cc370616d20}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="triggerConditions">
|
||||||
|
<destination>{e643f774-6ba8-4d08-8024-f7519865fe0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="Automator" id="{90366133-a0ec-4f7e-bd9a-5f6bfa00fbb1}">
|
<object class="Automator" id="{90366133-a0ec-4f7e-bd9a-5f6bfa00fbb1}">
|
||||||
<property name="nameOfPropertyBeingAutomated">
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
<value>volume</value>
|
<value>volume</value>
|
||||||
@@ -372,12 +661,13 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
|
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
|
||||||
<object class="MixerBusFader" id="{bcff4105-84b2-4029-ab05-ee40499bd6d7}" />
|
<object class="MixerBusFader" id="{bcff4105-84b2-4029-ab05-ee40499bd6d7}" />
|
||||||
<object class="FadeCurve" id="{0f0b33dd-1c3e-4ae5-aafd-b78df1fb3fb3}">
|
<object class="Automator" id="{c7d5db51-5cc7-4a96-aa9b-b0ac614b20b4}">
|
||||||
<relationship name="startPoint">
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
<destination>{4d43eee4-b1f3-4059-9655-e9fff9e8f3cf}</destination>
|
<value>pitch</value>
|
||||||
</relationship>
|
</property>
|
||||||
<relationship name="endPoint">
|
<relationship name="automationCurves">
|
||||||
<destination>{521485e5-2d53-48d2-bf3b-fe9adf6a23e5}</destination>
|
<destination>{cfa8dbf2-4cd0-4237-820d-dfcc1ba60b92}</destination>
|
||||||
|
<destination>{bb4b69c5-0c37-48f2-9150-67b54f6cada7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="TransitionSourceFadeOutCurve" id="{2c5ad079-4cf3-4abe-b305-318a1973df46}">
|
<object class="TransitionSourceFadeOutCurve" id="{2c5ad079-4cf3-4abe-b305-318a1973df46}">
|
||||||
@@ -402,18 +692,35 @@
|
|||||||
<destination>{54e94703-cd10-4aa4-b464-2b7fef99d424}</destination>
|
<destination>{54e94703-cd10-4aa4-b464-2b7fef99d424}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceFadeOutCurve" id="{b19568c5-743c-4995-bec3-affe1a777a99}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{79cfb349-f5d4-4cd5-8380-b2226a085074}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{ce4268cf-5dbd-4de9-b323-d4d314a3c9b4}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{4c83edb1-3418-4a96-a2f1-264d76e0d09f}">
|
<object class="MixerBusEffectChain" id="{4c83edb1-3418-4a96-a2f1-264d76e0d09f}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{3714f8cc-5ce4-4a32-95ad-2d7914329b34}</destination>
|
<destination>{3714f8cc-5ce4-4a32-95ad-2d7914329b34}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{63e9178e-475d-40fc-920c-8651e527fb59}" />
|
<object class="MixerBusPanner" id="{63e9178e-475d-40fc-920c-8651e527fb59}" />
|
||||||
<object class="FadeCurve" id="{cc01412a-a4dc-4991-bc3e-ef356fb0b349}">
|
<object class="Automator" id="{5bbdca19-de14-4b61-b3bb-38daed221b8d}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>pitch</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{35cbc4a0-c13c-4ebb-ae4a-d4120fcd9783}</destination>
|
||||||
|
<destination>{814bba9f-be8e-4d65-8402-823f1c20a0b1}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceFadeOutCurve" id="{8870a695-bd10-4a8d-85bc-f232b063a26c}">
|
||||||
<relationship name="startPoint">
|
<relationship name="startPoint">
|
||||||
<destination>{608ccc86-c42a-44ee-9758-6266528ab37d}</destination>
|
<destination>{6fbef5cf-022a-4194-8c50-072366c407c8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="endPoint">
|
<relationship name="endPoint">
|
||||||
<destination>{8347e597-f49c-448a-8859-ab56abd2cfef}</destination>
|
<destination>{231faf09-78f6-4425-8721-a07878e2284c}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{95b61c3b-a1b4-4383-8987-3e9d37ce48c8}">
|
<object class="MixerBusEffectChain" id="{95b61c3b-a1b4-4383-8987-3e9d37ce48c8}">
|
||||||
@@ -444,12 +751,21 @@
|
|||||||
<destination>{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}</destination>
|
<destination>{7458b366-b54e-494a-aaf5-f7e3f9a7b80e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="FadeCurve" id="{8db89fd1-87c6-48f9-bc35-b7c9b2d72e03}">
|
<object class="Automator" id="{614eb98f-eaa0-4e1e-8f79-8d86d0dc6a54}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>pitch</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{df9f5b41-fc35-45d6-8902-6c06e24f96f7}</destination>
|
||||||
|
<destination>{654cc3c4-7f39-40db-a2e3-76a3eee82372}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceFadeOutCurve" id="{14f584c0-01c0-491d-a6e2-b0ccdda2c17b}">
|
||||||
<relationship name="startPoint">
|
<relationship name="startPoint">
|
||||||
<destination>{41135604-c5b8-4471-bf3d-87405dec72cf}</destination>
|
<destination>{fec79393-70b9-4088-bacd-205b1f2c4e6f}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="endPoint">
|
<relationship name="endPoint">
|
||||||
<destination>{21c20269-1cbc-4c1b-a04e-66d9668a495d}</destination>
|
<destination>{721a191d-4179-4c77-9b8b-92f1365282c0}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{f10bfb6c-6448-4280-8a5e-f0f6fae31bc4}">
|
<object class="MixerBusEffectChain" id="{f10bfb6c-6448-4280-8a5e-f0f6fae31bc4}">
|
||||||
@@ -503,6 +819,59 @@
|
|||||||
<destination>{bbb583f9-87a7-4893-bd8b-4369e34d14c4}</destination>
|
<destination>{bbb583f9-87a7-4893-bd8b-4369e34d14c4}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionTimeline" id="{9f42511e-56fb-4cb1-abcc-6f21fb2cd3ae}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{2d0140b1-fe86-49f9-9442-7a023f39f4a6}</destination>
|
||||||
|
<destination>{233f6c9d-3db9-4eec-a3e0-1da2d8ea417e}</destination>
|
||||||
|
<destination>{b7ec8a97-5ecd-4d84-a7ae-4673615ab9dd}</destination>
|
||||||
|
<destination>{9d4d403b-b37e-4551-8af1-d3c37970533b}</destination>
|
||||||
|
<destination>{437c24cc-7d69-4ffb-b405-cee8f21546f5}</destination>
|
||||||
|
<destination>{c718bd66-70e6-45e6-af8d-75ff2e55c25b}</destination>
|
||||||
|
<destination>{1c92ae91-c75a-435e-aebb-1c5547ee11b7}</destination>
|
||||||
|
<destination>{da9f1051-8907-4e31-916e-35c904fd30a3}</destination>
|
||||||
|
<destination>{6bc70491-9ebc-498a-967d-d0cfd4e7317e}</destination>
|
||||||
|
<destination>{72aad3a2-e63f-4e23-80b1-4c41bd01e9de}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterCondition" id="{0821fc72-96d2-46d0-8ae9-d1316b57ee31}">
|
||||||
|
<property name="minimum">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionTimeline" id="{f4390488-0fcb-4112-909c-59fe84841d68}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{a82da4b7-e214-44c5-988d-0ce56dd2a901}</destination>
|
||||||
|
<destination>{6957b6e2-7a5b-4f0e-8ab8-15ef8a4ef992}</destination>
|
||||||
|
<destination>{a9714964-a28f-4be6-b474-6ee3b0fa2650}</destination>
|
||||||
|
<destination>{2658d5d3-9b5b-4c24-b16d-5be7f197e4f7}</destination>
|
||||||
|
<destination>{e21cfb8d-5367-43d0-b0ac-0b96adf600ed}</destination>
|
||||||
|
<destination>{fae501c0-88f0-4689-9219-39623068be8f}</destination>
|
||||||
|
<destination>{ffcd1838-d908-48f1-a630-9069744d0abe}</destination>
|
||||||
|
<destination>{b7e07763-adb1-44e7-86cb-24668c985b5e}</destination>
|
||||||
|
<destination>{320aba20-2e4e-40b9-a42d-4b7d4f914ddf}</destination>
|
||||||
|
<destination>{09fcee23-56e5-44b9-8b25-2680bed0701d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterCondition" id="{e643f774-6ba8-4d08-8024-f7519865fe0f}">
|
||||||
|
<property name="minimum">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="AutomationCurve" id="{de148571-fc43-4180-8ddd-f46920a9e1b0}">
|
<object class="AutomationCurve" id="{de148571-fc43-4180-8ddd-f46920a9e1b0}">
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
@@ -532,24 +901,25 @@
|
|||||||
<destination>{0c28d7ce-9e16-4a1a-92f3-93745705d89c}</destination>
|
<destination>{0c28d7ce-9e16-4a1a-92f3-93745705d89c}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{4d43eee4-b1f3-4059-9655-e9fff9e8f3cf}">
|
<object class="AutomationCurve" id="{cfa8dbf2-4cd0-4237-820d-dfcc1ba60b92}">
|
||||||
<property name="position">
|
<relationship name="parameter">
|
||||||
<value>0</value>
|
<destination>{9f42511e-56fb-4cb1-abcc-6f21fb2cd3ae}</destination>
|
||||||
</property>
|
</relationship>
|
||||||
<property name="value">
|
<relationship name="automationPoints">
|
||||||
<value>0</value>
|
<destination>{c506e8fb-bae3-4ca6-bd97-457277cd3870}</destination>
|
||||||
</property>
|
<destination>{0a44c7e5-b24a-424d-ad9e-df2606a16d0d}</destination>
|
||||||
<property name="curveShape">
|
<destination>{0488e180-69ae-43c2-9d36-b49ab4d19e16}</destination>
|
||||||
<value>-0.2547189</value>
|
</relationship>
|
||||||
</property>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{521485e5-2d53-48d2-bf3b-fe9adf6a23e5}">
|
<object class="AutomationCurve" id="{bb4b69c5-0c37-48f2-9150-67b54f6cada7}">
|
||||||
<property name="position">
|
<relationship name="parameter">
|
||||||
<value>1</value>
|
<destination>{f4390488-0fcb-4112-909c-59fe84841d68}</destination>
|
||||||
</property>
|
</relationship>
|
||||||
<property name="value">
|
<relationship name="automationPoints">
|
||||||
<value>1</value>
|
<destination>{9404740a-9d24-4060-87aa-2bc4b4ad7034}</destination>
|
||||||
</property>
|
<destination>{fb7ab6ca-3a49-4e1b-8c79-964b1ad1b923}</destination>
|
||||||
|
<destination>{b4702893-be45-4547-b584-af0bd1f918ba}</destination>
|
||||||
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
|
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
@@ -589,25 +959,64 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{3714f8cc-5ce4-4a32-95ad-2d7914329b34}" />
|
<object class="AutomationPoint" id="{79cfb349-f5d4-4cd5-8380-b2226a085074}">
|
||||||
<object class="AutomationPoint" id="{608ccc86-c42a-44ee-9758-6266528ab37d}">
|
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0.60000000000000009</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>-0.2547189</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{8347e597-f49c-448a-8859-ab56abd2cfef}">
|
<object class="AutomationPoint" id="{ce4268cf-5dbd-4de9-b323-d4d314a3c9b4}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>1</value>
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{3714f8cc-5ce4-4a32-95ad-2d7914329b34}" />
|
||||||
|
<object class="AutomationCurve" id="{35cbc4a0-c13c-4ebb-ae4a-d4120fcd9783}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{9f42511e-56fb-4cb1-abcc-6f21fb2cd3ae}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{c8482273-e451-42ca-bfcf-ed07c1a0abf9}</destination>
|
||||||
|
<destination>{10872735-804b-495a-9e3d-491cd7a0be69}</destination>
|
||||||
|
<destination>{17d47f15-f150-48f7-9d71-e3fb1395a95a}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{814bba9f-be8e-4d65-8402-823f1c20a0b1}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{f4390488-0fcb-4112-909c-59fe84841d68}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{5be548c3-8095-4b91-9b7f-213b05977c5e}</destination>
|
||||||
|
<destination>{54edc49e-543e-4e7a-9bb1-adbbb46bd3d8}</destination>
|
||||||
|
<destination>{efd5b12e-91cc-484a-992d-fa260cd56a9d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{6fbef5cf-022a-4194-8c50-072366c407c8}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.60000000000000009</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{231faf09-78f6-4425-8721-a07878e2284c}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{647a3ebf-08bb-4c4c-ad69-1df281bc3f0d}" />
|
<object class="MixerBusFader" id="{647a3ebf-08bb-4c4c-ad69-1df281bc3f0d}" />
|
||||||
<object class="AutomationPoint" id="{d82a2fd4-96d3-49d2-869d-b30497eb1912}">
|
<object class="AutomationPoint" id="{d82a2fd4-96d3-49d2-869d-b30497eb1912}">
|
||||||
@@ -648,23 +1057,43 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{41135604-c5b8-4471-bf3d-87405dec72cf}">
|
<object class="AutomationCurve" id="{df9f5b41-fc35-45d6-8902-6c06e24f96f7}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{9f42511e-56fb-4cb1-abcc-6f21fb2cd3ae}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{00d21d38-a27f-41cc-bec2-1272f7506210}</destination>
|
||||||
|
<destination>{e2f2f6dc-0c33-4f45-96cf-1aef71ba55c1}</destination>
|
||||||
|
<destination>{be36212d-181a-4641-89e4-2e73f131c238}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{654cc3c4-7f39-40db-a2e3-76a3eee82372}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{f4390488-0fcb-4112-909c-59fe84841d68}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{8dca878a-eb2d-4a8f-a541-34583ff1a4e0}</destination>
|
||||||
|
<destination>{59dbb7bf-ef33-4c7d-9e27-67f4d6bea85f}</destination>
|
||||||
|
<destination>{c0e86c45-5b3e-4a1f-8139-5d1fc91e0f7e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{fec79393-70b9-4088-bacd-205b1f2c4e6f}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0.60000000000000009</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>-0.2547189</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{21c20269-1cbc-4c1b-a04e-66d9668a495d}">
|
<object class="AutomationPoint" id="{721a191d-4179-4c77-9b8b-92f1365282c0}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>1</value>
|
<value>1.3</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{c6d90514-372a-48c9-98c9-73a27f9d8d59}" />
|
<object class="MixerBusFader" id="{c6d90514-372a-48c9-98c9-73a27f9d8d59}" />
|
||||||
@@ -712,7 +1141,7 @@
|
|||||||
<value>0.00092690677966101697</value>
|
<value>0.00092690677966101697</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>5</value>
|
<value>-3</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{18794128-1d2a-4525-ad7a-a4e031c16339}">
|
<object class="AutomationPoint" id="{18794128-1d2a-4525-ad7a-a4e031c16339}">
|
||||||
@@ -720,7 +1149,7 @@
|
|||||||
<value>0.45855402542372881</value>
|
<value>0.45855402542372881</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>2.5</value>
|
<value>-5.5</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{da66e3bb-be41-475c-8332-7d268b7ae31c}">
|
<object class="AutomationPoint" id="{da66e3bb-be41-475c-8332-7d268b7ae31c}">
|
||||||
@@ -728,7 +1157,7 @@
|
|||||||
<value>0.79471221751412424</value>
|
<value>0.79471221751412424</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>-0.5</value>
|
<value>-8.5</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{522652d1-483c-4b3f-916d-869a4b009de9}">
|
<object class="AutomationPoint" id="{522652d1-483c-4b3f-916d-869a4b009de9}">
|
||||||
@@ -736,7 +1165,7 @@
|
|||||||
<value>0.98680261299435024</value>
|
<value>0.98680261299435024</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>-31</value>
|
<value>-48.75</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{45bc4c90-8b7e-45a9-b395-1c1d8c22ada2}">
|
<object class="AutomationPoint" id="{45bc4c90-8b7e-45a9-b395-1c1d8c22ada2}">
|
||||||
@@ -744,7 +1173,7 @@
|
|||||||
<value>0.95000000000000007</value>
|
<value>0.95000000000000007</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>-8.5</value>
|
<value>-16.5</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="Automator" id="{df95b9af-05c2-4929-bd1c-d4ade15eaef5}">
|
<object class="Automator" id="{df95b9af-05c2-4929-bd1c-d4ade15eaef5}">
|
||||||
@@ -798,6 +1227,168 @@
|
|||||||
<destination>{a3c91364-36c5-4a03-a59d-efd3581c3ebd}</destination>
|
<destination>{a3c91364-36c5-4a03-a59d-efd3581c3ebd}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{c506e8fb-bae3-4ca6-bd97-457277cd3870}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.012159343071746868</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{0a44c7e5-b24a-424d-ad9e-df2606a16d0d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.3</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-18</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{0488e180-69ae-43c2-9d36-b49ab4d19e16}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.78560928433267874</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.406689495</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{9404740a-9d24-4060-87aa-2bc4b4ad7034}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.45403120215919385</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-12</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{fb7ab6ca-3a49-4e1b-8c79-964b1ad1b923}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.40000000000000002</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{b4702893-be45-4547-b584-af0bd1f918ba}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.81182342708603172</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{c8482273-e451-42ca-bfcf-ed07c1a0abf9}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.0021145386397867136</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{10872735-804b-495a-9e3d-491cd7a0be69}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.2978943103626466</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-18</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{17d47f15-f150-48f7-9d71-e3fb1395a95a}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.75045246882081817</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{5be548c3-8095-4b91-9b7f-213b05977c5e}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.40000000000000002</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{54edc49e-543e-4e7a-9bb1-adbbb46bd3d8}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.45000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-16</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="isSCurve">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{efd5b12e-91cc-484a-992d-fa260cd56a9d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.80000000000000004</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{00d21d38-a27f-41cc-bec2-1272f7506210}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.012159343071746868</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{e2f2f6dc-0c33-4f45-96cf-1aef71ba55c1}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.2978943103626466</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-18</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{be36212d-181a-4641-89e4-2e73f131c238}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.70525084887699752</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{8dca878a-eb2d-4a8f-a541-34583ff1a4e0}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.44760379692098717</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-9</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="isSCurve">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{59dbb7bf-ef33-4c7d-9e27-67f4d6bea85f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.40261196025354051</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{c0e86c45-5b3e-4a1f-8139-5d1fc91e0f7e}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.79896861660961849</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="AutomationCurve" id="{e46b5ac0-bea7-4474-964c-b5652cd06743}">
|
<object class="AutomationCurve" id="{e46b5ac0-bea7-4474-964c-b5652cd06743}">
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
@@ -829,7 +1420,7 @@
|
|||||||
<value>ApplyDA</value>
|
<value>ApplyDA</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -940,7 +1531,7 @@
|
|||||||
<value>DAType</value>
|
<value>DAType</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -954,7 +1545,7 @@
|
|||||||
<value>DAMinDist</value>
|
<value>DAMinDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -965,7 +1556,7 @@
|
|||||||
<value>DAMaxDist</value>
|
<value>DAMaxDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>9</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -1020,7 +1611,7 @@
|
|||||||
<value>DipoleWeight</value>
|
<value>DipoleWeight</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>0.0399999991</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||||
|
|||||||
@@ -301,7 +301,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -310,7 +309,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -390,7 +388,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{d5568e88-591f-480c-a76d-36b96afb3708}">
|
<object class="BoolPluginParameter" id="{d5568e88-591f-480c-a76d-36b96afb3708}">
|
||||||
@@ -602,7 +600,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{e6fd9a85-149b-438c-a97a-779f0a80adac}">
|
<object class="FloatPluginParameter" id="{e6fd9a85-149b-438c-a97a-779f0a80adac}">
|
||||||
@@ -639,7 +637,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -656,7 +653,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -309,7 +309,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -318,7 +317,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -406,7 +404,7 @@
|
|||||||
<value>ApplyPath</value>
|
<value>ApplyPath</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="IntPluginParameter" id="{4da24a66-fe98-4019-aea6-059fe29b59f6}">
|
<object class="IntPluginParameter" id="{4da24a66-fe98-4019-aea6-059fe29b59f6}">
|
||||||
@@ -629,7 +627,7 @@
|
|||||||
<value>PathBinaural</value>
|
<value>PathBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{4daf1525-60c7-47cc-a027-36e07f031834}">
|
<object class="FloatPluginParameter" id="{4daf1525-60c7-47cc-a027-36e07f031834}">
|
||||||
@@ -647,7 +645,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -664,7 +661,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -299,7 +299,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -308,7 +307,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -388,7 +386,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{e7c6ce79-a7c9-41bf-b4cd-5b49bb26a12d}">
|
<object class="BoolPluginParameter" id="{e7c6ce79-a7c9-41bf-b4cd-5b49bb26a12d}">
|
||||||
@@ -600,7 +598,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{61b145d9-684d-4b7c-bda0-42af70712e96}">
|
<object class="FloatPluginParameter" id="{61b145d9-684d-4b7c-bda0-42af70712e96}">
|
||||||
@@ -637,7 +635,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -654,7 +651,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -283,7 +283,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -292,7 +291,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -372,7 +370,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{3adaa7b1-7a11-4e64-ae31-b28afd80f4eb}">
|
<object class="BoolPluginParameter" id="{3adaa7b1-7a11-4e64-ae31-b28afd80f4eb}">
|
||||||
@@ -584,7 +582,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{6cebbd1a-1462-48a7-9367-9002e06b0f30}">
|
<object class="FloatPluginParameter" id="{6cebbd1a-1462-48a7-9367-9002e06b0f30}">
|
||||||
@@ -621,7 +619,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -638,7 +635,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -328,7 +328,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -337,7 +336,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -666,7 +664,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -683,7 +680,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -31,10 +31,14 @@
|
|||||||
<destination>{b842c7fd-0e05-4049-9e84-00fe3a5b7dd1}</destination>
|
<destination>{b842c7fd-0e05-4049-9e84-00fe3a5b7dd1}</destination>
|
||||||
<destination>{66e5a38d-00ec-494e-a247-b65494e3a317}</destination>
|
<destination>{66e5a38d-00ec-494e-a247-b65494e3a317}</destination>
|
||||||
<destination>{22752f6d-d8de-4884-82fb-e0753f73e5e6}</destination>
|
<destination>{22752f6d-d8de-4884-82fb-e0753f73e5e6}</destination>
|
||||||
|
<destination>{6e29845a-bd3f-499f-be8b-d1d0ca6a2dd8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="timeline">
|
<relationship name="timeline">
|
||||||
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
|
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{8aceca0c-4eca-4530-a5eb-978a56acc469}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@@ -45,6 +49,10 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MasterTrack" id="{5f78e435-596d-4d4f-9a39-bbc507ae7b7a}">
|
<object class="MasterTrack" id="{5f78e435-596d-4d4f-9a39-bbc507ae7b7a}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{a243062a-e3db-4b8e-8ca0-fa16dca3ec7d}</destination>
|
||||||
|
<destination>{b1e33332-7cf4-4e43-98c3-3023b04aab46}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@@ -70,8 +78,8 @@
|
|||||||
<property name="dopplerScale">
|
<property name="dopplerScale">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumDistance">
|
<property name="maximumDistance">
|
||||||
<value>2.20000005</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{2981f918-8c6d-4dc1-9511-505b40dbc05d}" />
|
<object class="MarkerTrack" id="{2981f918-8c6d-4dc1-9511-505b40dbc05d}" />
|
||||||
@@ -111,19 +119,45 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="GroupTrack" id="{22752f6d-d8de-4884-82fb-e0753f73e5e6}">
|
<object class="GroupTrack" id="{22752f6d-d8de-4884-82fb-e0753f73e5e6}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{ab868fd8-7f14-4369-b587-83dd1686867c}</destination>
|
||||||
|
<destination>{55169095-481a-447c-b19e-6cc74064bfb4}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{c519baf7-ecf1-4f7e-bf06-55301ad4a7b2}</destination>
|
<destination>{c519baf7-ecf1-4f7e-bf06-55301ad4a7b2}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="GroupTrack" id="{6e29845a-bd3f-499f-be8b-d1d0ca6a2dd8}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{18523af0-cd52-4b15-8d18-3789f98867f6}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{46cd927b-5f5e-499c-b923-adf9be933fec}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="Timeline" id="{0062ed52-d2d1-4741-a3da-f721d4923a9b}">
|
<object class="Timeline" id="{0062ed52-d2d1-4741-a3da-f721d4923a9b}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{50de92b0-a8b9-44ba-a8da-2dbecab07cbd}</destination>
|
<destination>{50de92b0-a8b9-44ba-a8da-2dbecab07cbd}</destination>
|
||||||
<destination>{0802a0d3-a8ae-4fed-bffe-476b36e6bde0}</destination>
|
<destination>{0802a0d3-a8ae-4fed-bffe-476b36e6bde0}</destination>
|
||||||
<destination>{81dc7c2f-311d-4305-b0ef-ccac59fd1dca}</destination>
|
<destination>{81dc7c2f-311d-4305-b0ef-ccac59fd1dca}</destination>
|
||||||
<destination>{aca4fed4-a36c-4cda-9af4-c3993f016c42}</destination>
|
<destination>{aca4fed4-a36c-4cda-9af4-c3993f016c42}</destination>
|
||||||
|
<destination>{ab868fd8-7f14-4369-b587-83dd1686867c}</destination>
|
||||||
|
<destination>{55169095-481a-447c-b19e-6cc74064bfb4}</destination>
|
||||||
|
<destination>{18523af0-cd52-4b15-8d18-3789f98867f6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{8aceca0c-4eca-4530-a5eb-978a56acc469}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventMixerMaster" id="{ffb8b949-0094-4a58-abe5-359891622f8c}">
|
<object class="EventMixerMaster" id="{ffb8b949-0094-4a58-abe5-359891622f8c}">
|
||||||
|
<property name="overridingInputFormat">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{8d2b03c1-2648-4f95-bbed-e834d8591293}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{fb2eee16-23de-440f-9363-b6208a2732e8}</destination>
|
<destination>{fb2eee16-23de-440f-9363-b6208a2732e8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@@ -134,6 +168,16 @@
|
|||||||
<destination>{8a481067-2c45-444c-86ae-8f9f17b95b92}</destination>
|
<destination>{8a481067-2c45-444c-86ae-8f9f17b95b92}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{a243062a-e3db-4b8e-8ca0-fa16dca3ec7d}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{8d2b03c1-2648-4f95-bbed-e834d8591293}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{b1e33332-7cf4-4e43-98c3-3023b04aab46}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{c40cced6-e479-4788-9af3-103b399c1664}">
|
<object class="MixerBusEffectChain" id="{c40cced6-e479-4788-9af3-103b399c1664}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{53d88e58-d862-40ff-976d-892f927b0f30}</destination>
|
<destination>{53d88e58-d862-40ff-976d-892f927b0f30}</destination>
|
||||||
@@ -282,6 +326,34 @@
|
|||||||
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="CommandSound" id="{ab868fd8-7f14-4369-b587-83dd1686867c}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="commandType">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<property name="targetValue">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="commandTarget">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="CommandSound" id="{55169095-481a-447c-b19e-6cc74064bfb4}">
|
||||||
|
<property name="start">
|
||||||
|
<value>14.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="commandType">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="commandTarget">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{c519baf7-ecf1-4f7e-bf06-55301ad4a7b2}">
|
<object class="EventMixerGroup" id="{c519baf7-ecf1-4f7e-bf06-55301ad4a7b2}">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 5</value>
|
<value>Audio 5</value>
|
||||||
@@ -296,11 +368,44 @@
|
|||||||
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="CommandSound" id="{18523af0-cd52-4b15-8d18-3789f98867f6}">
|
||||||
|
<property name="start">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="commandTarget">
|
||||||
|
<destination>{8ce2164f-f09d-435f-a8b3-b8bcbaa6b1d1}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{46cd927b-5f5e-499c-b923-adf9be933fec}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 7</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{8112d48b-4f6d-4788-98e4-5d80991b2f4b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{78cb3c4f-ad4c-49bf-8e95-02b8ccd1652a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Automator" id="{8d2b03c1-2648-4f95-bbed-e834d8591293}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>volume</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{56f51cbd-082f-4de0-9f2c-927c3c4fcd8e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{fb2eee16-23de-440f-9363-b6208a2732e8}">
|
<object class="MixerBusEffectChain" id="{fb2eee16-23de-440f-9363-b6208a2732e8}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{acaebb26-bfea-4c16-a406-d3bdb161a680}</destination>
|
|
||||||
<destination>{34075740-b734-477b-bb4c-4b2d0c0dbf70}</destination>
|
<destination>{34075740-b734-477b-bb4c-4b2d0c0dbf70}</destination>
|
||||||
<destination>{1eb9ad6f-5ad0-45da-9ff8-6b0a6895c63e}</destination>
|
<destination>{1eb9ad6f-5ad0-45da-9ff8-6b0a6895c63e}</destination>
|
||||||
|
<destination>{acaebb26-bfea-4c16-a406-d3bdb161a680}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{990fdcfd-199d-4f40-8e0b-73fa7dbc76b9}" />
|
<object class="MixerBusPanner" id="{990fdcfd-199d-4f40-8e0b-73fa7dbc76b9}" />
|
||||||
@@ -385,9 +490,22 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{0a30dcf3-87b1-4142-b186-107252885dc8}" />
|
<object class="MixerBusPanner" id="{0a30dcf3-87b1-4142-b186-107252885dc8}" />
|
||||||
<object class="PluginEffect" id="{acaebb26-bfea-4c16-a406-d3bdb161a680}">
|
<object class="MixerBusEffectChain" id="{8112d48b-4f6d-4788-98e4-5d80991b2f4b}">
|
||||||
<relationship name="plugin">
|
<relationship name="effects">
|
||||||
<destination>{18dff622-970d-4604-8e31-fde67c7532e7}</destination>
|
<destination>{5c1a95c3-eb4f-421e-923b-1281deefa24b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{78cb3c4f-ad4c-49bf-8e95-02b8ccd1652a}" />
|
||||||
|
<object class="AutomationCurve" id="{56f51cbd-082f-4de0-9f2c-927c3c4fcd8e}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{a3d818d8-e206-4e85-8450-e7df123c6f5e}</destination>
|
||||||
|
<destination>{f86e77ea-21da-4402-b965-c1ff480d1768}</destination>
|
||||||
|
<destination>{d8b22413-f729-485f-8fe3-f3423728601b}</destination>
|
||||||
|
<destination>{32db8333-a83f-4fcb-be11-05d312dc6482}</destination>
|
||||||
|
<destination>{4e69b288-62d0-445c-ae55-8bb1eb81d708}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{34075740-b734-477b-bb4c-4b2d0c0dbf70}" />
|
<object class="MixerBusFader" id="{34075740-b734-477b-bb4c-4b2d0c0dbf70}" />
|
||||||
@@ -402,6 +520,11 @@
|
|||||||
<destination>{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}</destination>
|
<destination>{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="PluginEffect" id="{acaebb26-bfea-4c16-a406-d3bdb161a680}">
|
||||||
|
<relationship name="plugin">
|
||||||
|
<destination>{18dff622-970d-4604-8e31-fde67c7532e7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="AutomationCurve" id="{a5b08504-0a23-4657-aa16-93886047aa2b}">
|
<object class="AutomationCurve" id="{a5b08504-0a23-4657-aa16-93886047aa2b}">
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
|
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
|
||||||
@@ -492,6 +615,55 @@
|
|||||||
<object class="MixerBusFader" id="{a751c897-4a7a-4940-b69f-1e805bfab04c}" />
|
<object class="MixerBusFader" id="{a751c897-4a7a-4940-b69f-1e805bfab04c}" />
|
||||||
<object class="MixerBusFader" id="{0e14780e-48f9-46a1-98b0-b938e5b6766f}" />
|
<object class="MixerBusFader" id="{0e14780e-48f9-46a1-98b0-b938e5b6766f}" />
|
||||||
<object class="MixerBusFader" id="{0b22ba20-af83-402c-be4f-13a94ae22780}" />
|
<object class="MixerBusFader" id="{0b22ba20-af83-402c-be4f-13a94ae22780}" />
|
||||||
|
<object class="MixerBusFader" id="{5c1a95c3-eb4f-421e-923b-1281deefa24b}" />
|
||||||
|
<object class="AutomationPoint" id="{a3d818d8-e206-4e85-8450-e7df123c6f5e}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.0070621468926553672</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>3.81469727e-06</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{f86e77ea-21da-4402-b965-c1ff480d1768}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.34604519774011294</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-2</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{d8b22413-f729-485f-8fe3-f3423728601b}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.7076271186440678</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-4</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{32db8333-a83f-4fcb-be11-05d312dc6482}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.94774011299435024</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-4</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{4e69b288-62d0-445c-ae55-8bb1eb81d708}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-80</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="Automator" id="{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{ecc2d62a-f808-4a29-8dce-cc8a765931d5}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="Plugin" id="{18dff622-970d-4604-8e31-fde67c7532e7}">
|
<object class="Plugin" id="{18dff622-970d-4604-8e31-fde67c7532e7}">
|
||||||
<property name="identifier">
|
<property name="identifier">
|
||||||
<value>Steam Audio Spatializer</value>
|
<value>Steam Audio Spatializer</value>
|
||||||
@@ -535,14 +707,6 @@
|
|||||||
<destination>{0264abb5-8685-4535-9823-c378f49ef3d6}</destination>
|
<destination>{0264abb5-8685-4535-9823-c378f49ef3d6}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="Automator" id="{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}">
|
|
||||||
<property name="nameOfPropertyBeingAutomated">
|
|
||||||
<value>frequencyA</value>
|
|
||||||
</property>
|
|
||||||
<relationship name="automationCurves">
|
|
||||||
<destination>{ecc2d62a-f808-4a29-8dce-cc8a765931d5}</destination>
|
|
||||||
</relationship>
|
|
||||||
</object>
|
|
||||||
<object class="AutomationPoint" id="{2a8d079f-c2d3-4f8f-a105-0aae6d48a172}">
|
<object class="AutomationPoint" id="{2a8d079f-c2d3-4f8f-a105-0aae6d48a172}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>14.050000000000001</value>
|
<value>14.050000000000001</value>
|
||||||
@@ -562,6 +726,18 @@
|
|||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{ecc2d62a-f808-4a29-8dce-cc8a765931d5}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{90d8eb5b-3042-434e-bb8d-fa2d353fea9a}</destination>
|
||||||
|
<destination>{5fefc253-b614-47e0-9790-128f96857f76}</destination>
|
||||||
|
<destination>{c73e5728-c7e8-4f09-a6a0-dfc952305216}</destination>
|
||||||
|
<destination>{7d820117-faf2-4be8-883b-b2e15fb744b1}</destination>
|
||||||
|
<destination>{e97fd2b9-35b1-4dd9-b4f7-2c4917465801}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="DataPluginParameter" id="{a11cde93-3037-4b15-8245-7edc7ec71b33}">
|
<object class="DataPluginParameter" id="{a11cde93-3037-4b15-8245-7edc7ec71b33}">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
@@ -611,7 +787,7 @@
|
|||||||
<value>ApplyDir</value>
|
<value>ApplyDir</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -653,7 +829,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{8502a8ec-625f-48b0-bea0-14d095090343}">
|
<object class="BoolPluginParameter" id="{8502a8ec-625f-48b0-bea0-14d095090343}">
|
||||||
@@ -661,7 +837,7 @@
|
|||||||
<value>ApplyPath</value>
|
<value>ApplyPath</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="IntPluginParameter" id="{a96a2ce7-6131-4de9-a382-662f0f8b3509}">
|
<object class="IntPluginParameter" id="{a96a2ce7-6131-4de9-a382-662f0f8b3509}">
|
||||||
@@ -708,7 +884,7 @@
|
|||||||
<value>DAMinDist</value>
|
<value>DAMinDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>2</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -719,7 +895,7 @@
|
|||||||
<value>DAMaxDist</value>
|
<value>DAMaxDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>20</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -865,7 +1041,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{4ecbeafc-abde-43d7-a135-e4d404c4aa1c}">
|
<object class="FloatPluginParameter" id="{4ecbeafc-abde-43d7-a135-e4d404c4aa1c}">
|
||||||
@@ -884,7 +1060,7 @@
|
|||||||
<value>PathBinaural</value>
|
<value>PathBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{989ea430-8d9a-4b2d-878c-5cfcab6ecce4}">
|
<object class="FloatPluginParameter" id="{989ea430-8d9a-4b2d-878c-5cfcab6ecce4}">
|
||||||
@@ -958,29 +1134,6 @@
|
|||||||
<value>false</value>
|
<value>false</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationCurve" id="{ecc2d62a-f808-4a29-8dce-cc8a765931d5}">
|
|
||||||
<relationship name="parameter">
|
|
||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
|
||||||
</relationship>
|
|
||||||
<relationship name="automationPoints">
|
|
||||||
<destination>{21aa5825-cab5-462f-976e-3bcc0066fae9}</destination>
|
|
||||||
<destination>{90d8eb5b-3042-434e-bb8d-fa2d353fea9a}</destination>
|
|
||||||
<destination>{5fefc253-b614-47e0-9790-128f96857f76}</destination>
|
|
||||||
<destination>{c73e5728-c7e8-4f09-a6a0-dfc952305216}</destination>
|
|
||||||
<destination>{7d820117-faf2-4be8-883b-b2e15fb744b1}</destination>
|
|
||||||
</relationship>
|
|
||||||
</object>
|
|
||||||
<object class="AutomationPoint" id="{21aa5825-cab5-462f-976e-3bcc0066fae9}">
|
|
||||||
<property name="position">
|
|
||||||
<value>0</value>
|
|
||||||
</property>
|
|
||||||
<property name="value">
|
|
||||||
<value>12000</value>
|
|
||||||
</property>
|
|
||||||
<property name="curveShape">
|
|
||||||
<value>0.0314547755</value>
|
|
||||||
</property>
|
|
||||||
</object>
|
|
||||||
<object class="AutomationPoint" id="{90d8eb5b-3042-434e-bb8d-fa2d353fea9a}">
|
<object class="AutomationPoint" id="{90d8eb5b-3042-434e-bb8d-fa2d353fea9a}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@@ -994,7 +1147,7 @@
|
|||||||
<value>0.5</value>
|
<value>0.5</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1028.48486</value>
|
<value>12000</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>-0.0945791602</value>
|
<value>-0.0945791602</value>
|
||||||
@@ -1002,18 +1155,26 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{c73e5728-c7e8-4f09-a6a0-dfc952305216}">
|
<object class="AutomationPoint" id="{c73e5728-c7e8-4f09-a6a0-dfc952305216}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.96999999999999997</value>
|
<value>0.95000000000000007</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>130</value>
|
<value>4000</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{7d820117-faf2-4be8-883b-b2e15fb744b1}">
|
<object class="AutomationPoint" id="{7d820117-faf2-4be8-883b-b2e15fb744b1}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.94694561637357466</value>
|
<value>0.85000000000000009</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>200</value>
|
<value>8000</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{e97fd2b9-35b1-4dd9-b4f7-2c4917465801}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>16000</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
|||||||
@@ -214,7 +214,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -223,7 +222,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -552,7 +550,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -569,7 +566,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -23,6 +23,8 @@
|
|||||||
<destination>{1fb9b144-3aba-4f27-adac-3209e96a12a3}</destination>
|
<destination>{1fb9b144-3aba-4f27-adac-3209e96a12a3}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="markerTracks">
|
<relationship name="markerTracks">
|
||||||
|
<destination>{6cebd0c5-e32b-4fd2-807b-9d33a519231c}</destination>
|
||||||
|
<destination>{2e1eae4e-a6ae-455b-be3d-b851a257e1c6}</destination>
|
||||||
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="groupTracks">
|
<relationship name="groupTracks">
|
||||||
@@ -33,6 +35,7 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameters">
|
<relationship name="parameters">
|
||||||
<destination>{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}</destination>
|
<destination>{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}</destination>
|
||||||
|
<destination>{0de6a38c-9ba8-4198-a322-28ba6ce5660f}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
@@ -46,10 +49,15 @@
|
|||||||
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
|
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
|
||||||
<relationship name="automationTracks">
|
<relationship name="automationTracks">
|
||||||
<destination>{545591e5-e760-4a3b-8842-a47576b46777}</destination>
|
<destination>{545591e5-e760-4a3b-8842-a47576b46777}</destination>
|
||||||
|
<destination>{909b220a-7be9-4e8d-a54d-9c5ad312f7f0}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
|
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
|
||||||
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
|
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
|
||||||
|
<destination>{476e7730-735b-46a3-a558-f7757cb666bb}</destination>
|
||||||
|
<destination>{bf874b0d-d4b8-459b-b612-d74ab99de17b}</destination>
|
||||||
|
<destination>{8b8f0665-0d4d-4704-b12f-2c35520dafff}</destination>
|
||||||
|
<destination>{c79521df-b296-425a-8966-a230d2c23fde}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
||||||
@@ -71,15 +79,24 @@
|
|||||||
<value>2</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>10</value>
|
<value>9</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="MarkerTrack" id="{6cebd0c5-e32b-4fd2-807b-9d33a519231c}" />
|
||||||
|
<object class="MarkerTrack" id="{2e1eae4e-a6ae-455b-be3d-b851a257e1c6}" />
|
||||||
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
|
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
|
||||||
<object class="GroupTrack" id="{01fb89ff-00b4-412b-a565-42dfb0192e83}">
|
<object class="GroupTrack" id="{01fb89ff-00b4-412b-a565-42dfb0192e83}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{17ab4710-c1ce-4a4d-84fa-a6b502d89540}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
|
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
|
||||||
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
|
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
|
||||||
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
|
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
|
||||||
|
<destination>{d4098f34-7757-49fe-9ba8-d2ff7ab3bd5d}</destination>
|
||||||
|
<destination>{64a17f17-73d2-426d-9fed-6ceb49e33320}</destination>
|
||||||
|
<destination>{c28c9fba-f378-4451-8119-5328c514a573}</destination>
|
||||||
|
<destination>{dd52d60a-a2a4-43c5-9158-dca6733b790f}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{eddef13d-d55e-4eb2-94c9-4584ca5065b1}</destination>
|
<destination>{eddef13d-d55e-4eb2-94c9-4584ca5065b1}</destination>
|
||||||
@@ -91,6 +108,11 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="markers">
|
<relationship name="markers">
|
||||||
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
|
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
|
||||||
|
<destination>{555e2157-19bf-4d25-90a4-55900912bc43}</destination>
|
||||||
|
<destination>{aa926a53-427e-4354-a9e6-051fb49de8b5}</destination>
|
||||||
|
<destination>{2e850b73-2d34-45b8-9118-fe3efa7f97e3}</destination>
|
||||||
|
<destination>{d1bb76f7-1e23-40fd-a8a6-1a73485df07e}</destination>
|
||||||
|
<destination>{7b36e3e5-fb67-4374-a609-8fda90dddd37}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="ParameterProxy" id="{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}">
|
<object class="ParameterProxy" id="{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}">
|
||||||
@@ -98,10 +120,18 @@
|
|||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{0de6a38c-9ba8-4198-a322-28ba6ce5660f}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-3.5</value>
|
<value>-3.5</value>
|
||||||
</property>
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{c72b4e67-fdbe-4e85-b957-980bbabe02d7}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@@ -117,6 +147,11 @@
|
|||||||
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
|
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{909b220a-7be9-4e8d-a54d-9c5ad312f7f0}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{c72b4e67-fdbe-4e85-b957-980bbabe02d7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{2f17962e-8fa8-478d-93c5-8d2832a11033}">
|
<object class="TransitionSourceSound" id="{2f17962e-8fa8-478d-93c5-8d2832a11033}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -130,12 +165,43 @@
|
|||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{476e7730-735b-46a3-a558-f7757cb666bb}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{bf874b0d-d4b8-459b-b612-d74ab99de17b}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.8</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{8b8f0665-0d4d-4704-b12f-2c35520dafff}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{c79521df-b296-425a-8966-a230d2c23fde}">
|
||||||
|
<property name="start">
|
||||||
|
<value>0.75</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{66d0c94f-935d-4207-8632-309629bf6c65}">
|
<object class="MixerBusEffectChain" id="{66d0c94f-935d-4207-8632-309629bf6c65}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{8334671c-21ec-4b08-a65f-03e78fa4f8f7}</destination>
|
<destination>{8334671c-21ec-4b08-a65f-03e78fa4f8f7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
|
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
|
||||||
|
<object class="AutomationTrack" id="{17ab4710-c1ce-4a4d-84fa-a6b502d89540}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{d218aa5f-6a05-402e-9d4b-a54f8520d3f7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}">
|
<object class="TransitionSourceSound" id="{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0.20000000000000001</value>
|
<value>0.20000000000000001</value>
|
||||||
@@ -159,10 +225,45 @@
|
|||||||
<property name="length">
|
<property name="length">
|
||||||
<value>30</value>
|
<value>30</value>
|
||||||
</property>
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{d218aa5f-6a05-402e-9d4b-a54f8520d3f7}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
|
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{d4098f34-7757-49fe-9ba8-d2ff7ab3bd5d}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.6000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{c2750e5f-9504-4af2-a413-3e8a523cc8e7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{64a17f17-73d2-426d-9fed-6ceb49e33320}">
|
||||||
|
<property name="start">
|
||||||
|
<value>1.8</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{c28c9fba-f378-4451-8119-5328c514a573}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{dd52d60a-a2a4-43c5-9158-dca6733b790f}">
|
||||||
|
<property name="start">
|
||||||
|
<value>0.050000000000000003</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0.70000000000000018</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeInCurve">
|
||||||
|
<destination>{6991af13-37fd-4d1b-a42e-8c13b990cd5e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{eddef13d-d55e-4eb2-94c9-4584ca5065b1}">
|
<object class="EventMixerGroup" id="{eddef13d-d55e-4eb2-94c9-4584ca5065b1}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-8</value>
|
<value>-8</value>
|
||||||
@@ -197,8 +298,105 @@
|
|||||||
<destination>{45e5e68d-9039-4056-927d-69e6bfcf1caa}</destination>
|
<destination>{45e5e68d-9039-4056-927d-69e6bfcf1caa}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="NamedMarker" id="{555e2157-19bf-4d25-90a4-55900912bc43}">
|
||||||
|
<property name="position">
|
||||||
|
<value>32</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>AlarmOn</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="NamedMarker" id="{aa926a53-427e-4354-a9e6-051fb49de8b5}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>AlarmOff</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{2e1eae4e-a6ae-455b-be3d-b851a257e1c6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionRegion" id="{2e850b73-2d34-45b8-9118-fe3efa7f97e3}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>30</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{6cebd0c5-e32b-4fd2-807b-9d33a519231c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="transitionTimeline">
|
||||||
|
<destination>{207f44b7-7fe4-42a3-a8f1-d4c89ad294d1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="destination">
|
||||||
|
<destination>{555e2157-19bf-4d25-90a4-55900912bc43}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="triggerConditions">
|
||||||
|
<destination>{7daed807-081d-42b9-b4ef-5d397c24bff6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionRegion" id="{d1bb76f7-1e23-40fd-a8a6-1a73485df07e}">
|
||||||
|
<property name="position">
|
||||||
|
<value>32</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3999999999999986</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{6cebd0c5-e32b-4fd2-807b-9d33a519231c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="transitionTimeline">
|
||||||
|
<destination>{2b5a6e0b-4f3f-4bc5-80ec-4a852ceae0c5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="destination">
|
||||||
|
<destination>{aa926a53-427e-4354-a9e6-051fb49de8b5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="triggerConditions">
|
||||||
|
<destination>{0c766531-db1a-45a7-9291-46219b57ff10}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="LoopRegion" id="{7b36e3e5-fb67-4374-a609-8fda90dddd37}">
|
||||||
|
<property name="position">
|
||||||
|
<value>32</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3999999999999986</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{2e1eae4e-a6ae-455b-be3d-b851a257e1c6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Automator" id="{c72b4e67-fdbe-4e85-b957-980bbabe02d7}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>volume</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{27e8dc3b-7ba6-4c1d-be80-c64a7790cf95}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
|
<destination>{50c221a0-d2b8-465f-9565-c010d17b5606}</destination>
|
||||||
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
||||||
<destination>{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}</destination>
|
<destination>{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}</destination>
|
||||||
<destination>{38a8dcfd-4ef5-4d51-bb99-998928550eb6}</destination>
|
<destination>{38a8dcfd-4ef5-4d51-bb99-998928550eb6}</destination>
|
||||||
@@ -222,6 +420,32 @@
|
|||||||
<destination>{ba64e590-1007-4870-a767-69e6f5344408}</destination>
|
<destination>{ba64e590-1007-4870-a767-69e6f5344408}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="Automator" id="{d218aa5f-6a05-402e-9d4b-a54f8520d3f7}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>pitch</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{1251f560-ba59-45cb-989a-b1884498fb20}</destination>
|
||||||
|
<destination>{60c52af2-b574-47f4-bc8c-200a1c8b4825}</destination>
|
||||||
|
<destination>{ae223ba5-1a50-4fc5-8526-10ec95b9aade}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceFadeOutCurve" id="{c2750e5f-9504-4af2-a413-3e8a523cc8e7}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{4bf8b8fb-d876-4cc5-8038-f9b00d8341d0}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{6d47cda9-5d4b-4a78-8328-533ceafa6796}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationFadeInCurve" id="{6991af13-37fd-4d1b-a42e-8c13b990cd5e}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{b922ff5c-9083-4b6c-bbd5-7d4fa853723d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{4eef21c5-69f1-4aa6-b301-f20cf1b8c196}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{83cd5b7e-cf1d-4978-bf51-d0f8527b367d}">
|
<object class="MixerBusEffectChain" id="{83cd5b7e-cf1d-4978-bf51-d0f8527b367d}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{266bd1ca-73b1-4a8f-9a5b-9e085151a1de}</destination>
|
<destination>{266bd1ca-73b1-4a8f-9a5b-9e085151a1de}</destination>
|
||||||
@@ -239,6 +463,73 @@
|
|||||||
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
|
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionTimeline" id="{207f44b7-7fe4-42a3-a8f1-d4c89ad294d1}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.8</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{d4098f34-7757-49fe-9ba8-d2ff7ab3bd5d}</destination>
|
||||||
|
<destination>{64a17f17-73d2-426d-9fed-6ceb49e33320}</destination>
|
||||||
|
<destination>{476e7730-735b-46a3-a558-f7757cb666bb}</destination>
|
||||||
|
<destination>{bf874b0d-d4b8-459b-b612-d74ab99de17b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterCondition" id="{7daed807-081d-42b9-b4ef-5d397c24bff6}">
|
||||||
|
<property name="minimum">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionTimeline" id="{2b5a6e0b-4f3f-4bc5-80ec-4a852ceae0c5}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0.75</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{c28c9fba-f378-4451-8119-5328c514a573}</destination>
|
||||||
|
<destination>{dd52d60a-a2a4-43c5-9158-dca6733b790f}</destination>
|
||||||
|
<destination>{8b8f0665-0d4d-4704-b12f-2c35520dafff}</destination>
|
||||||
|
<destination>{c79521df-b296-425a-8966-a230d2c23fde}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterCondition" id="{0c766531-db1a-45a7-9291-46219b57ff10}">
|
||||||
|
<property name="minimum">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{27e8dc3b-7ba6-4c1d-be80-c64a7790cf95}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{46a54255-81aa-4263-9096-8d0e7912b233}</destination>
|
||||||
|
<destination>{f75535c4-2270-49ca-a717-ac7f4e024444}</destination>
|
||||||
|
<destination>{464b4720-5411-4227-ae0a-8e021b51dc00}</destination>
|
||||||
|
<destination>{09950811-06b6-4165-8c73-c227c0cb714d}</destination>
|
||||||
|
<destination>{5274092b-5d49-4c13-a9c9-338c07798f74}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ThreeEQEffect" id="{50c221a0-d2b8-465f-9565-c010d17b5606}">
|
||||||
|
<property name="highGain">
|
||||||
|
<value>-9</value>
|
||||||
|
</property>
|
||||||
|
<property name="highCrossover">
|
||||||
|
<value>6500</value>
|
||||||
|
</property>
|
||||||
|
<property name="crossoverSlope">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
||||||
<object class="MultibandEqEffect" id="{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}">
|
<object class="MultibandEqEffect" id="{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}">
|
||||||
<property name="frequencyA">
|
<property name="frequencyA">
|
||||||
@@ -294,7 +585,114 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{1251f560-ba59-45cb-989a-b1884498fb20}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{207f44b7-7fe4-42a3-a8f1-d4c89ad294d1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{345e84a9-96ea-47b5-8682-ac01f9e2ac2f}</destination>
|
||||||
|
<destination>{427d86c5-f185-4605-8926-4e6619644b28}</destination>
|
||||||
|
<destination>{58dec099-58e3-4a5c-a4ac-510494da779b}</destination>
|
||||||
|
<destination>{c9620ff1-0406-4a40-b291-09f0b0e8122b}</destination>
|
||||||
|
<destination>{416cce7e-65b8-42bb-bc19-c126d8ccd0ca}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{60c52af2-b574-47f4-bc8c-200a1c8b4825}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{2b5a6e0b-4f3f-4bc5-80ec-4a852ceae0c5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{895c4b65-508d-441c-b278-750d1f3f1a5d}</destination>
|
||||||
|
<destination>{2260c562-340e-42aa-830e-b2250f5673cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{ae223ba5-1a50-4fc5-8526-10ec95b9aade}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{2c3a9bf9-ba0e-4364-b8bb-8417e620881f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{4bf8b8fb-d876-4cc5-8038-f9b00d8341d0}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{6d47cda9-5d4b-4a78-8328-533ceafa6796}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.6000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{b922ff5c-9083-4b6c-bbd5-7d4fa853723d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.050000000000000003</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>-1.00000048</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{4eef21c5-69f1-4aa6-b301-f20cf1b8c196}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.75000000000000011</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MixerBusFader" id="{266bd1ca-73b1-4a8f-9a5b-9e085151a1de}" />
|
<object class="MixerBusFader" id="{266bd1ca-73b1-4a8f-9a5b-9e085151a1de}" />
|
||||||
|
<object class="AutomationPoint" id="{46a54255-81aa-4263-9096-8d0e7912b233}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.0014124293785310734</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-3.5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{f75535c4-2270-49ca-a717-ac7f4e024444}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.49293785310734461</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-6</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{464b4720-5411-4227-ae0a-8e021b51dc00}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.76977401129943501</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-12</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{09950811-06b6-4165-8c73-c227c0cb714d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.93361581920903958</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-12</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{5274092b-5d49-4c13-a9c9-338c07798f74}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.98163841807909602</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-80</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="Automator" id="{1ab41ced-f781-4927-9d01-a6c8664036bb}">
|
<object class="Automator" id="{1ab41ced-f781-4927-9d01-a6c8664036bb}">
|
||||||
<property name="nameOfPropertyBeingAutomated">
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
<value>frequencyA</value>
|
<value>frequencyA</value>
|
||||||
@@ -346,6 +744,70 @@
|
|||||||
<destination>{ec1e3877-b606-4f4a-9888-12174126f814}</destination>
|
<destination>{ec1e3877-b606-4f4a-9888-12174126f814}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{345e84a9-96ea-47b5-8682-ac01f9e2ac2f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.012910694348898282</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{427d86c5-f185-4605-8926-4e6619644b28}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.7768215804134275</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{58dec099-58e3-4a5c-a4ac-510494da779b}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.0104782741082388</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-3.5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{c9620ff1-0406-4a40-b291-09f0b0e8122b}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.6000000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-16</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{416cce7e-65b8-42bb-bc19-c126d8ccd0ca}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.49517846469612908</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{895c4b65-508d-441c-b278-750d1f3f1a5d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-24</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{2260c562-340e-42aa-830e-b2250f5673cc}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-4</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{2c3a9bf9-ba0e-4364-b8bb-8417e620881f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>34.260664717557766</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="AutomationCurve" id="{dc3aae18-6666-4494-ba7c-5602bd0dd75d}">
|
<object class="AutomationCurve" id="{dc3aae18-6666-4494-ba7c-5602bd0dd75d}">
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
|
||||||
@@ -377,7 +839,7 @@
|
|||||||
<value>ApplyDA</value>
|
<value>ApplyDA</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -488,7 +950,7 @@
|
|||||||
<value>DAType</value>
|
<value>DAType</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumValue">
|
<property name="minimumValue">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@@ -513,7 +975,7 @@
|
|||||||
<value>DAMaxDist</value>
|
<value>DAMaxDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>10</value>
|
<value>9</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -568,7 +1030,7 @@
|
|||||||
<value>DipoleWeight</value>
|
<value>DipoleWeight</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>0.0350000001</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
|
||||||
@@ -757,7 +1219,7 @@
|
|||||||
<value>0.01</value>
|
<value>0.01</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>5000</value>
|
<value>11000</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{49ca9360-fee1-4873-8bc4-b4c6b24e312e}">
|
<object class="AutomationPoint" id="{49ca9360-fee1-4873-8bc4-b4c6b24e312e}">
|
||||||
@@ -765,7 +1227,7 @@
|
|||||||
<value>0.20000000000000001</value>
|
<value>0.20000000000000001</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1100</value>
|
<value>11000</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>-0.0511879399</value>
|
<value>-0.0511879399</value>
|
||||||
@@ -776,7 +1238,7 @@
|
|||||||
<value>0.64000000000000001</value>
|
<value>0.64000000000000001</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>35</value>
|
<value>11000</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
<destination>{eccd3ae9-997e-4343-b26e-01f0c8902870}</destination>
|
<destination>{eccd3ae9-997e-4343-b26e-01f0c8902870}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
<destination>{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">
|
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
<destination>{192db0a1-fb33-43b0-ad10-2bc0789d00f1}</destination>
|
<destination>{192db0a1-fb33-43b0-ad10-2bc0789d00f1}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
<destination>{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{3efb2dc8-fbcb-433e-abb0-523ec7203651}" />
|
<object class="EventAutomatableProperties" id="{3efb2dc8-fbcb-433e-abb0-523ec7203651}" />
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
<object class="MixerBusFader" id="{390d5c76-aaf0-4792-b5c6-003f1a3a0925}" />
|
<object class="MixerBusFader" id="{390d5c76-aaf0-4792-b5c6-003f1a3a0925}" />
|
||||||
<object class="AutomationPoint" id="{2e2369aa-56fb-49c1-a422-5cc6606701b3}">
|
<object class="AutomationPoint" id="{2e2369aa-56fb-49c1-a422-5cc6606701b3}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>5.4000000000000004</value>
|
<value>5.4000000000000261</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{a1c5436f-04dc-417c-bdd8-9e5b730a53d3}">
|
<object class="AutomationPoint" id="{a1c5436f-04dc-417c-bdd8-9e5b730a53d3}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>7.4000000000000004</value>
|
<value>7.3999999999999808</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
|
|||||||
@@ -816,7 +816,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -825,7 +824,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -905,7 +903,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{164586ef-cc2b-4046-804c-3da07f5ec2be}">
|
<object class="BoolPluginParameter" id="{164586ef-cc2b-4046-804c-3da07f5ec2be}">
|
||||||
@@ -1117,7 +1115,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{104e092c-570c-4594-8269-7d108158a066}">
|
<object class="FloatPluginParameter" id="{104e092c-570c-4594-8269-7d108158a066}">
|
||||||
@@ -1154,7 +1152,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -1171,7 +1168,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -285,7 +285,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -294,7 +293,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -374,7 +372,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{31439bbc-e79b-474c-9220-6894c43ba6ce}">
|
<object class="BoolPluginParameter" id="{31439bbc-e79b-474c-9220-6894c43ba6ce}">
|
||||||
@@ -586,7 +584,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{5123af24-d26f-410b-ae47-abe8adb56096}">
|
<object class="FloatPluginParameter" id="{5123af24-d26f-410b-ae47-abe8adb56096}">
|
||||||
@@ -623,7 +621,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -640,7 +637,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -73,11 +73,8 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{01a7c570-5ee5-451c-b338-2928032226a4}">
|
<object class="EventAutomatableProperties" id="{01a7c570-5ee5-451c-b338-2928032226a4}">
|
||||||
<property name="minimumDistance">
|
|
||||||
<value>4.80000019</value>
|
|
||||||
</property>
|
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>150</value>
|
<value>50</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{831858f0-f689-4710-9a40-3246f1e5b327}" />
|
<object class="MarkerTrack" id="{831858f0-f689-4710-9a40-3246f1e5b327}" />
|
||||||
@@ -853,7 +850,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{59f9f10a-8486-4416-9579-7da775df9305}">
|
<object class="BoolPluginParameter" id="{59f9f10a-8486-4416-9579-7da775df9305}">
|
||||||
@@ -1065,7 +1062,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{a8d05cd5-657d-46e0-956e-979cb491d6be}">
|
<object class="FloatPluginParameter" id="{a8d05cd5-657d-46e0-956e-979cb491d6be}">
|
||||||
|
|||||||
@@ -51,11 +51,8 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{a5264ff5-8aa0-40be-8838-09988f6b4dcf}">
|
<object class="EventAutomatableProperties" id="{a5264ff5-8aa0-40be-8838-09988f6b4dcf}">
|
||||||
<property name="minimumDistance">
|
|
||||||
<value>5</value>
|
|
||||||
</property>
|
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>30</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{f9c675b2-0848-4991-816d-05256e20cab8}" />
|
<object class="MarkerTrack" id="{f9c675b2-0848-4991-816d-05256e20cab8}" />
|
||||||
@@ -351,7 +348,7 @@
|
|||||||
<value>DAMinDist</value>
|
<value>DAMinDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>5</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
@@ -362,7 +359,7 @@
|
|||||||
<value>DAMaxDist</value>
|
<value>DAMaxDist</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>30</value>
|
<value>15</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curve">
|
<property name="curve">
|
||||||
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
|
||||||
|
|||||||
@@ -237,7 +237,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -246,7 +245,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -326,7 +324,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{5bdcd2df-68ca-4e10-9fe1-d65907ffb38a}">
|
<object class="BoolPluginParameter" id="{5bdcd2df-68ca-4e10-9fe1-d65907ffb38a}">
|
||||||
@@ -538,7 +536,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{b9fdc811-86da-4de6-a818-364081fa88c0}">
|
<object class="FloatPluginParameter" id="{b9fdc811-86da-4de6-a818-364081fa88c0}">
|
||||||
@@ -575,7 +573,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -592,7 +589,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -212,7 +212,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -221,7 +220,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -301,7 +299,7 @@
|
|||||||
<value>ApplyRefl</value>
|
<value>ApplyRefl</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="BoolPluginParameter" id="{caabd9aa-9fb8-4110-a9c0-4511e91ba859}">
|
<object class="BoolPluginParameter" id="{caabd9aa-9fb8-4110-a9c0-4511e91ba859}">
|
||||||
@@ -513,7 +511,7 @@
|
|||||||
<value>ReflBinaural</value>
|
<value>ReflBinaural</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>false</value>
|
<value>true</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="FloatPluginParameter" id="{ec3cca25-aeae-4ec2-97cd-56b839586e0d}">
|
<object class="FloatPluginParameter" id="{ec3cca25-aeae-4ec2-97cd-56b839586e0d}">
|
||||||
@@ -550,7 +548,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -567,7 +564,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -246,7 +246,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SourcePos</value>
|
<value>SourcePos</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-2</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -255,7 +254,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>OverallGain</value>
|
<value>OverallGain</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -584,7 +582,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>SimOutputs</value>
|
<value>SimOutputs</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@@ -601,7 +598,6 @@
|
|||||||
<property name="name">
|
<property name="name">
|
||||||
<value>DistRange</value>
|
<value>DistRange</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value" />
|
|
||||||
<property name="dataType">
|
<property name="dataType">
|
||||||
<value>-6</value>
|
<value>-6</value>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -0,0 +1,685 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Event" id="{f4f4316b-e717-4ccd-af9e-c34ebeb884d8}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Printing</value>
|
||||||
|
</property>
|
||||||
|
<property name="outputFormat">
|
||||||
|
<value>5</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{4785766d-0662-4337-956d-971b698d998d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="masterTrack">
|
||||||
|
<destination>{0c514f91-9b01-487d-b6c6-95c6649cd297}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerInput">
|
||||||
|
<destination>{dc0658d7-97b3-4fad-bfd3-935869113ab1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{bc682575-d29d-4163-a0e4-abe98661c86a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{c9ef392b-6e1a-4324-a31a-525e6ebf4173}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="groupTracks">
|
||||||
|
<destination>{b151f1d2-f4d0-49fb-8dbc-70f962652e8f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{dec06c40-71be-4816-8de4-bd303f7534dc}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="banks">
|
||||||
|
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixer" id="{4785766d-0662-4337-956d-971b698d998d}">
|
||||||
|
<relationship name="masterBus">
|
||||||
|
<destination>{4c2761d3-5ba3-4350-9a23-8cc04bdc62b8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MasterTrack" id="{0c514f91-9b01-487d-b6c6-95c6649cd297}">
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{4c2761d3-5ba3-4350-9a23-8cc04bdc62b8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerInput" id="{dc0658d7-97b3-4fad-bfd3-935869113ab1}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{86b0173d-5030-45de-96b7-3cd1c9699113}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{afd96f2e-1909-4036-a0a5-2f70044b9a67}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{bc682575-d29d-4163-a0e4-abe98661c86a}" />
|
||||||
|
<object class="MarkerTrack" id="{c9ef392b-6e1a-4324-a31a-525e6ebf4173}" />
|
||||||
|
<object class="GroupTrack" id="{b151f1d2-f4d0-49fb-8dbc-70f962652e8f}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{9798e859-d0eb-41ac-a64b-fc07860f700e}</destination>
|
||||||
|
<destination>{8ea50375-a0f7-4a1c-a6c3-625295caecc4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{89d8aca9-cb7f-4a19-8862-35318efd3023}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Timeline" id="{dec06c40-71be-4816-8de4-bd303f7534dc}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{9798e859-d0eb-41ac-a64b-fc07860f700e}</destination>
|
||||||
|
<destination>{8ea50375-a0f7-4a1c-a6c3-625295caecc4}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerMaster" id="{4c2761d3-5ba3-4350-9a23-8cc04bdc62b8}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{519eae48-9889-453a-ba2f-4540298d5597}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{b6935f7d-7f75-4d35-a11f-87a2a2a244c8}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{4785766d-0662-4337-956d-971b698d998d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{86b0173d-5030-45de-96b7-3cd1c9699113}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{c6a86906-c5ef-40b4-86c1-530912cf070b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{afd96f2e-1909-4036-a0a5-2f70044b9a67}" />
|
||||||
|
<object class="SingleSound" id="{9798e859-d0eb-41ac-a64b-fc07860f700e}">
|
||||||
|
<property name="length">
|
||||||
|
<value>16.280791666666666</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{d21ff6b9-a7ad-4436-9d58-7b1fc4ea08f9}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{de352de2-ad70-4809-9f6b-1cc01f121d8a}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SingleSound" id="{8ea50375-a0f7-4a1c-a6c3-625295caecc4}">
|
||||||
|
<property name="start">
|
||||||
|
<value>14.600000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>5.6356562500000003</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeInCurve">
|
||||||
|
<destination>{21f0c9c9-d7f4-43c2-ba54-21702dc2d08d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{484d5ffa-31dc-40b9-99b5-547844a52170}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{038b55ce-57ad-4210-a77d-264de7dd9c85}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{89d8aca9-cb7f-4a19-8862-35318efd3023}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>2.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{bf87e916-93ef-4f56-b982-bb805e70ebea}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{20461a6e-8f19-4ccb-9271-cce30368009c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{4c2761d3-5ba3-4350-9a23-8cc04bdc62b8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{519eae48-9889-453a-ba2f-4540298d5597}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{bd162886-1d3b-4ea8-a1f1-296a7874ab06}</destination>
|
||||||
|
<destination>{2e79711f-dd6f-4437-b8c5-e660714ba5b5}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{b6935f7d-7f75-4d35-a11f-87a2a2a244c8}" />
|
||||||
|
<object class="MixerBusFader" id="{c6a86906-c5ef-40b4-86c1-530912cf070b}" />
|
||||||
|
<object class="FadeCurve" id="{d21ff6b9-a7ad-4436-9d58-7b1fc4ea08f9}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{ee721a48-9541-468f-92b5-288d355ba43b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{911b195e-a1e4-4702-a2bc-5e7bbd60fe49}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="relatedModule">
|
||||||
|
<destination>{8ea50375-a0f7-4a1c-a6c3-625295caecc4}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="FadeCurve" id="{21f0c9c9-d7f4-43c2-ba54-21702dc2d08d}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{73eedbd9-fbef-4b1e-b32b-f4cdf66e8b25}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{2843a513-77ae-4b20-bfcd-c51b4620677f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="relatedModule">
|
||||||
|
<destination>{9798e859-d0eb-41ac-a64b-fc07860f700e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="FadeCurve" id="{484d5ffa-31dc-40b9-99b5-547844a52170}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{8aea529c-fb6d-4f00-a8c0-0a98a2fce4cd}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{f63e77a1-0404-4c3c-8e72-7ca429e5e320}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{bf87e916-93ef-4f56-b982-bb805e70ebea}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{1a20a1a7-55e6-4933-89b3-d7818987efb5}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{20461a6e-8f19-4ccb-9271-cce30368009c}" />
|
||||||
|
<object class="MixerBusFader" id="{bd162886-1d3b-4ea8-a1f1-296a7874ab06}" />
|
||||||
|
<object class="PluginEffect" id="{2e79711f-dd6f-4437-b8c5-e660714ba5b5}">
|
||||||
|
<relationship name="plugin">
|
||||||
|
<destination>{6803af1f-8823-46dd-ada1-37dbe4c4cc95}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{ee721a48-9541-468f-92b5-288d355ba43b}">
|
||||||
|
<property name="position">
|
||||||
|
<value>14.600000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.25471893</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{911b195e-a1e4-4702-a2bc-5e7bbd60fe49}">
|
||||||
|
<property name="position">
|
||||||
|
<value>16.280791666666666</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{73eedbd9-fbef-4b1e-b32b-f4cdf66e8b25}">
|
||||||
|
<property name="position">
|
||||||
|
<value>14.600000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>-0.2547189</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{2843a513-77ae-4b20-bfcd-c51b4620677f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>16.280791666666666</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{8aea529c-fb6d-4f00-a8c0-0a98a2fce4cd}">
|
||||||
|
<property name="position">
|
||||||
|
<value>19.600000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{f63e77a1-0404-4c3c-8e72-7ca429e5e320}">
|
||||||
|
<property name="position">
|
||||||
|
<value>20.235656250000002</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{1a20a1a7-55e6-4933-89b3-d7818987efb5}" />
|
||||||
|
<object class="Plugin" id="{6803af1f-8823-46dd-ada1-37dbe4c4cc95}">
|
||||||
|
<property name="identifier">
|
||||||
|
<value>Steam Audio Spatializer</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="pluginParameters">
|
||||||
|
<destination>{abcad186-a292-4f58-a43d-410e4be304ea}</destination>
|
||||||
|
<destination>{0061a663-4057-48b6-a7e7-72d657267be9}</destination>
|
||||||
|
<destination>{156ef74a-6e5a-401d-a1a2-d5f94cee4113}</destination>
|
||||||
|
<destination>{65e0abcc-bfdb-4570-8bbe-ee3a3a75284e}</destination>
|
||||||
|
<destination>{737756b3-e3ca-4e9a-bd39-0a1a9531f453}</destination>
|
||||||
|
<destination>{5e50333d-ccfb-4884-867a-d97e015ee40a}</destination>
|
||||||
|
<destination>{2cced22a-d9f5-4b6e-aab2-c9b3d0c291d7}</destination>
|
||||||
|
<destination>{130e7181-4f15-4304-af52-b3e5c354f0b5}</destination>
|
||||||
|
<destination>{5248d1ed-57cc-44a6-98a7-af4e53f292a5}</destination>
|
||||||
|
<destination>{6d578d33-df35-48ce-a9ba-6c0e3a839346}</destination>
|
||||||
|
<destination>{292b7655-553c-4bb5-bc98-c0e3f6dc43f8}</destination>
|
||||||
|
<destination>{8c24db23-752d-4d7c-b78e-90b3b8556135}</destination>
|
||||||
|
<destination>{31177d86-b226-4ff9-aaf5-92dc53a726af}</destination>
|
||||||
|
<destination>{9b428680-7c2f-47e9-a3fc-9f1c1d87848d}</destination>
|
||||||
|
<destination>{dd74cb61-892a-4c37-baf0-0b8bca181af1}</destination>
|
||||||
|
<destination>{e848e4c9-931d-4a05-bb05-ff964ba0575b}</destination>
|
||||||
|
<destination>{f35d218d-ab2a-4971-a7b6-0ac7571bba1a}</destination>
|
||||||
|
<destination>{b2da9e94-370d-4725-964b-9877f0c566d1}</destination>
|
||||||
|
<destination>{75bce29d-ec48-484d-8382-e643d44e40fe}</destination>
|
||||||
|
<destination>{09156850-d637-4d28-ab25-83807eb70616}</destination>
|
||||||
|
<destination>{6202929f-14be-4e1c-9c16-a088a7eea1eb}</destination>
|
||||||
|
<destination>{e8ddb6ef-7bf5-4dd0-992d-2a53c1f5d7eb}</destination>
|
||||||
|
<destination>{19300d46-d36a-4339-93e3-20ea01528ca8}</destination>
|
||||||
|
<destination>{8ddb620b-ab41-4af0-b188-08cdcf8e2841}</destination>
|
||||||
|
<destination>{a82f66a8-0d34-41b0-a172-3905a7f75a88}</destination>
|
||||||
|
<destination>{c71d5bd0-d26a-4c3a-a9fa-db64dee6b548}</destination>
|
||||||
|
<destination>{e8a2cf10-7a6c-4ccf-af48-868caf140ba7}</destination>
|
||||||
|
<destination>{78874029-2c39-4556-821f-e235b00949f1}</destination>
|
||||||
|
<destination>{d6dee7b8-2f53-4561-9928-ec5cd4477684}</destination>
|
||||||
|
<destination>{0bf7b2db-c26b-4ac3-a204-37e01d8bcc14}</destination>
|
||||||
|
<destination>{4df3df52-c1c4-4ba5-b5ba-cdeded1f86e7}</destination>
|
||||||
|
<destination>{6ba53af2-43e7-4d65-942b-f8550ae699e7}</destination>
|
||||||
|
<destination>{c1950b17-d59d-4dc2-88a6-69769d129271}</destination>
|
||||||
|
<destination>{86fbfbe4-bcbb-41e6-8174-b5bb7488c070}</destination>
|
||||||
|
<destination>{507c583b-1390-43ce-afa3-caccf0231b6f}</destination>
|
||||||
|
<destination>{b7d81f9c-3a14-42ae-aff2-f8f7d0747aa8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="DataPluginParameter" id="{abcad186-a292-4f58-a43d-410e4be304ea}">
|
||||||
|
<property name="name">
|
||||||
|
<value>SourcePos</value>
|
||||||
|
</property>
|
||||||
|
<property name="dataType">
|
||||||
|
<value>-2</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="DataPluginParameter" id="{0061a663-4057-48b6-a7e7-72d657267be9}">
|
||||||
|
<property name="name">
|
||||||
|
<value>OverallGain</value>
|
||||||
|
</property>
|
||||||
|
<property name="dataType">
|
||||||
|
<value>-1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="IntPluginParameter" id="{156ef74a-6e5a-401d-a1a2-d5f94cee4113}">
|
||||||
|
<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="{65e0abcc-bfdb-4570-8bbe-ee3a3a75284e}">
|
||||||
|
<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="{737756b3-e3ca-4e9a-bd39-0a1a9531f453}">
|
||||||
|
<property name="name">
|
||||||
|
<value>ApplyDir</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="{5e50333d-ccfb-4884-867a-d97e015ee40a}">
|
||||||
|
<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="{2cced22a-d9f5-4b6e-aab2-c9b3d0c291d7}">
|
||||||
|
<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="{130e7181-4f15-4304-af52-b3e5c354f0b5}">
|
||||||
|
<property name="name">
|
||||||
|
<value>ApplyRefl</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="BoolPluginParameter" id="{5248d1ed-57cc-44a6-98a7-af4e53f292a5}">
|
||||||
|
<property name="name">
|
||||||
|
<value>ApplyPath</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="IntPluginParameter" id="{6d578d33-df35-48ce-a9ba-6c0e3a839346}">
|
||||||
|
<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="{292b7655-553c-4bb5-bc98-c0e3f6dc43f8}">
|
||||||
|
<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="{8c24db23-752d-4d7c-b78e-90b3b8556135}">
|
||||||
|
<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="{31177d86-b226-4ff9-aaf5-92dc53a726af}">
|
||||||
|
<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="{9b428680-7c2f-47e9-a3fc-9f1c1d87848d}">
|
||||||
|
<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="{dd74cb61-892a-4c37-baf0-0b8bca181af1}">
|
||||||
|
<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="{e848e4c9-931d-4a05-bb05-ff964ba0575b}">
|
||||||
|
<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="{f35d218d-ab2a-4971-a7b6-0ac7571bba1a}">
|
||||||
|
<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="{b2da9e94-370d-4725-964b-9877f0c566d1}">
|
||||||
|
<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="{75bce29d-ec48-484d-8382-e643d44e40fe}">
|
||||||
|
<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="{09156850-d637-4d28-ab25-83807eb70616}">
|
||||||
|
<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="{6202929f-14be-4e1c-9c16-a088a7eea1eb}">
|
||||||
|
<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="{e8ddb6ef-7bf5-4dd0-992d-2a53c1f5d7eb}">
|
||||||
|
<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="{19300d46-d36a-4339-93e3-20ea01528ca8}">
|
||||||
|
<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="{8ddb620b-ab41-4af0-b188-08cdcf8e2841}">
|
||||||
|
<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="{a82f66a8-0d34-41b0-a172-3905a7f75a88}">
|
||||||
|
<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="{c71d5bd0-d26a-4c3a-a9fa-db64dee6b548}">
|
||||||
|
<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="{e8a2cf10-7a6c-4ccf-af48-868caf140ba7}">
|
||||||
|
<property name="name">
|
||||||
|
<value>ReflBinaural</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="FloatPluginParameter" id="{78874029-2c39-4556-821f-e235b00949f1}">
|
||||||
|
<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="{d6dee7b8-2f53-4561-9928-ec5cd4477684}">
|
||||||
|
<property name="name">
|
||||||
|
<value>PathBinaural</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="FloatPluginParameter" id="{0bf7b2db-c26b-4ac3-a204-37e01d8bcc14}">
|
||||||
|
<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="{4df3df52-c1c4-4ba5-b5ba-cdeded1f86e7}">
|
||||||
|
<property name="name">
|
||||||
|
<value>SimOutputs</value>
|
||||||
|
</property>
|
||||||
|
<property name="dataType">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="BoolPluginParameter" id="{6ba53af2-43e7-4d65-942b-f8550ae699e7}">
|
||||||
|
<property name="name">
|
||||||
|
<value>DirectBinaural</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="DataPluginParameter" id="{c1950b17-d59d-4dc2-88a6-69769d129271}">
|
||||||
|
<property name="name">
|
||||||
|
<value>DistRange</value>
|
||||||
|
</property>
|
||||||
|
<property name="dataType">
|
||||||
|
<value>-6</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="IntPluginParameter" id="{86fbfbe4-bcbb-41e6-8174-b5bb7488c070}">
|
||||||
|
<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="{507c583b-1390-43ce-afa3-caccf0231b6f}">
|
||||||
|
<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="{b7d81f9c-3a14-42ae-aff2-f8f7d0747aa8}">
|
||||||
|
<property name="name">
|
||||||
|
<value>PathNormEQ</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
<destination>{7e2ac30b-be63-44ef-a305-8fff647325f1}</destination>
|
<destination>{7e2ac30b-be63-44ef-a305-8fff647325f1}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
<destination>{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{995e7f12-6fbf-4e49-ae59-8003cb959e85}" />
|
<object class="EventAutomatableProperties" id="{995e7f12-6fbf-4e49-ae59-8003cb959e85}" />
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="EventFolder" id="{46ecb943-a7f0-4a91-92cc-befbdfb0c276}">
|
||||||
|
<property name="name">
|
||||||
|
<value>3Dprinter</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="MixerGroup" id="{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}">
|
||||||
|
<property name="name">
|
||||||
|
<value>2DSFX</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masters">
|
||||||
|
<destination>{162960f4-09a2-4526-a61e-7ac7e219d27d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{fb571c4d-53fe-4c82-8c46-adf38c7d38e1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{17482624-d05e-4bfc-be65-c35dc578df67}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{fb571c4d-53fe-4c82-8c46-adf38c7d38e1}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{8337d40e-0752-4bb3-a45f-81b3023e7439}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{17482624-d05e-4bfc-be65-c35dc578df67}" />
|
||||||
|
<object class="MixerBusFader" id="{8337d40e-0752-4bb3-a45f-81b3023e7439}" />
|
||||||
|
</objects>
|
||||||
@@ -20,8 +20,23 @@
|
|||||||
<object class="MixerBusEffectChain" id="{f7718f12-2a00-40d4-9061-39b5772aa050}">
|
<object class="MixerBusEffectChain" id="{f7718f12-2a00-40d4-9061-39b5772aa050}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{5557a20e-6198-4d3f-88e4-2e0f328e2cf6}</destination>
|
<destination>{5557a20e-6198-4d3f-88e4-2e0f328e2cf6}</destination>
|
||||||
|
<destination>{c9b269a2-d142-4357-9aa3-23a95f5b16f7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{4b689108-fd02-4ac7-9047-2a1c21fd99c9}" />
|
<object class="MixerBusPanner" id="{4b689108-fd02-4ac7-9047-2a1c21fd99c9}" />
|
||||||
<object class="MixerBusFader" id="{5557a20e-6198-4d3f-88e4-2e0f328e2cf6}" />
|
<object class="MixerBusFader" id="{5557a20e-6198-4d3f-88e4-2e0f328e2cf6}" />
|
||||||
|
<object class="MixerSend" id="{c9b269a2-d142-4357-9aa3-23a95f5b16f7}">
|
||||||
|
<property name="bypass">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="level">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="inputFormat">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixerReturn">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{debf6d1b-1a0f-410a-b164-73cf847387d4}</destination>
|
<destination>{debf6d1b-1a0f-410a-b164-73cf847387d4}</destination>
|
||||||
<destination>{1bc06e27-7d01-4337-9d6a-554bc11f1617}</destination>
|
<destination>{1bc06e27-7d01-4337-9d6a-554bc11f1617}</destination>
|
||||||
|
<destination>{1b9efed9-690a-49f4-8678-5884329f9f10}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{24ad219d-2c49-44e9-b50d-c15dd77a0dfd}" />
|
<object class="MixerBusPanner" id="{24ad219d-2c49-44e9-b50d-c15dd77a0dfd}" />
|
||||||
@@ -31,6 +32,20 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{1bc06e27-7d01-4337-9d6a-554bc11f1617}" />
|
<object class="MixerBusFader" id="{1bc06e27-7d01-4337-9d6a-554bc11f1617}" />
|
||||||
|
<object class="MixerSend" id="{1b9efed9-690a-49f4-8678-5884329f9f10}">
|
||||||
|
<property name="bypass">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="level">
|
||||||
|
<value>-25</value>
|
||||||
|
</property>
|
||||||
|
<property name="inputFormat">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixerReturn">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="Automator" id="{eff12f3d-31f6-4b1a-b63d-e496ac03e35d}">
|
<object class="Automator" id="{eff12f3d-31f6-4b1a-b63d-e496ac03e35d}">
|
||||||
<property name="nameOfPropertyBeingAutomated">
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
<value>highGain</value>
|
<value>highGain</value>
|
||||||
|
|||||||
@@ -20,8 +20,23 @@
|
|||||||
<object class="MixerBusEffectChain" id="{bd6035f4-9345-4a65-add5-a89f2d31f082}">
|
<object class="MixerBusEffectChain" id="{bd6035f4-9345-4a65-add5-a89f2d31f082}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{28b438ff-ec1a-454d-a5a9-218791e5461e}</destination>
|
<destination>{28b438ff-ec1a-454d-a5a9-218791e5461e}</destination>
|
||||||
|
<destination>{d946ff03-d5a3-4488-9f16-34f260bf0455}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{55db2213-ffe6-430c-a45e-2671bb82eac4}" />
|
<object class="MixerBusPanner" id="{55db2213-ffe6-430c-a45e-2671bb82eac4}" />
|
||||||
<object class="MixerBusFader" id="{28b438ff-ec1a-454d-a5a9-218791e5461e}" />
|
<object class="MixerBusFader" id="{28b438ff-ec1a-454d-a5a9-218791e5461e}" />
|
||||||
|
<object class="MixerSend" id="{d946ff03-d5a3-4488-9f16-34f260bf0455}">
|
||||||
|
<property name="bypass">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="level">
|
||||||
|
<value>-43</value>
|
||||||
|
</property>
|
||||||
|
<property name="inputFormat">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixerReturn">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPreset" id="{98156f4f-b015-4c29-aaaf-489c4f50bf99}">
|
||||||
|
<property name="name">
|
||||||
|
<value>AlarmSet</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{3f2651a5-e075-4647-aff9-4a98fe753c98}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="GameParameter" id="{3f2651a5-e075-4647-aff9-4a98fe753c98}">
|
||||||
|
<property name="parameterType">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="enumerationLabels">
|
||||||
|
<value>Off</value>
|
||||||
|
<value>On</value>
|
||||||
|
</property>
|
||||||
|
<property name="isGlobal">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="MixerReturn" id="{95a057b4-7ce0-471e-96b5-2b4c636024cc}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Reverb</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{b38a3cbe-c1d0-4021-b9f7-3cd7cbf703d4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{80b696b2-f6f9-4ae5-a85c-3bee2902af7f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{b38a3cbe-c1d0-4021-b9f7-3cd7cbf703d4}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{30d4d983-3aa0-4148-8fb2-a2d0ee88afc3}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{80b696b2-f6f9-4ae5-a85c-3bee2902af7f}" />
|
||||||
|
<object class="MixerBusFader" id="{30d4d983-3aa0-4148-8fb2-a2d0ee88afc3}" />
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Snapshot" id="{5036dc7c-960e-48e0-87ed-8aed093ae1bb}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Reverb_Medium_Classroom</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{a1197cab-76c8-4da4-a41f-969ff1afdca4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{890c3380-a64a-4ab7-89f5-036bb2e3407c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{45cdd55a-51c8-44af-9bf6-d4109bc8257b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{6aafed16-65f7-4f94-8487-147caf965647}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotMasterTrack">
|
||||||
|
<destination>{d78fb6b8-bf93-4a30-8679-5bc143ef11a1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotProperties">
|
||||||
|
<destination>{14248285-0f1c-4fd5-aadf-2380f4f7a6f5}</destination>
|
||||||
|
<destination>{94b55d04-075c-4c5a-956c-3f1e7e9eaf14}</destination>
|
||||||
|
<destination>{ccc80391-a26f-4d13-9ad0-5e13f139a091}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotTracks">
|
||||||
|
<destination>{197ce4d8-728a-41a2-9d92-af3c33f211df}</destination>
|
||||||
|
<destination>{22a3c68e-3aab-4aec-85ea-7c986666a29d}</destination>
|
||||||
|
<destination>{ed5e1092-8ffc-47ca-ad55-8e7f52e4fa26}</destination>
|
||||||
|
<destination>{c2c33c64-7e16-4390-b653-f5d8a67d37c7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{890c3380-a64a-4ab7-89f5-036bb2e3407c}" />
|
||||||
|
<object class="MarkerTrack" id="{45cdd55a-51c8-44af-9bf6-d4109bc8257b}" />
|
||||||
|
<object class="Timeline" id="{6aafed16-65f7-4f94-8487-147caf965647}" />
|
||||||
|
<object class="SnapshotMasterTrack" id="{d78fb6b8-bf93-4a30-8679-5bc143ef11a1}" />
|
||||||
|
<object class="SnapshotProperty" id="{14248285-0f1c-4fd5-aadf-2380f4f7a6f5}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{1b9efed9-690a-49f4-8678-5884329f9f10}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{94b55d04-075c-4c5a-956c-3f1e7e9eaf14}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{d946ff03-d5a3-4488-9f16-34f260bf0455}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{ccc80391-a26f-4d13-9ad0-5e13f139a091}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{c9b269a2-d142-4357-9aa3-23a95f5b16f7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{197ce4d8-728a-41a2-9d92-af3c33f211df}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{22a3c68e-3aab-4aec-85ea-7c986666a29d}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{ed5e1092-8ffc-47ca-ad55-8e7f52e4fa26}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{c2c33c64-7e16-4390-b653-f5d8a67d37c7}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Snapshot" id="{503c1af1-3ca9-412c-a3bd-d42dd2f3004d}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Reverb_Small_Classroom</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{a1197cab-76c8-4da4-a41f-969ff1afdca4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{665d97f0-e175-49db-b925-f346383529cb}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{d39df14d-606b-42d2-93fd-f6c279974c33}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{3ae0d0f2-bbab-4823-ad0f-4dce08e41314}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotMasterTrack">
|
||||||
|
<destination>{6f2a2067-3b04-44f2-9158-6406eb4d91d5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotProperties">
|
||||||
|
<destination>{89e3e420-9e17-49f8-8e46-81deb9217c4a}</destination>
|
||||||
|
<destination>{c75bb60c-b6ae-4292-a64b-fcde73720e43}</destination>
|
||||||
|
<destination>{e7a597a4-fce9-4520-845c-d6cb1452b67f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotTracks">
|
||||||
|
<destination>{78b0fdac-d1f8-46b2-8a8d-7cd2e37f0d06}</destination>
|
||||||
|
<destination>{b86a04b1-01be-4bd9-bd78-a25a40651f74}</destination>
|
||||||
|
<destination>{2b3616a5-1c27-47a4-8ad3-4228a227cb69}</destination>
|
||||||
|
<destination>{d6ace5c0-b9a8-4216-8a5e-a61731657d38}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{665d97f0-e175-49db-b925-f346383529cb}" />
|
||||||
|
<object class="MarkerTrack" id="{d39df14d-606b-42d2-93fd-f6c279974c33}" />
|
||||||
|
<object class="Timeline" id="{3ae0d0f2-bbab-4823-ad0f-4dce08e41314}" />
|
||||||
|
<object class="SnapshotMasterTrack" id="{6f2a2067-3b04-44f2-9158-6406eb4d91d5}" />
|
||||||
|
<object class="SnapshotProperty" id="{89e3e420-9e17-49f8-8e46-81deb9217c4a}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{c9b269a2-d142-4357-9aa3-23a95f5b16f7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{c75bb60c-b6ae-4292-a64b-fcde73720e43}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{1b9efed9-690a-49f4-8678-5884329f9f10}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{e7a597a4-fce9-4520-845c-d6cb1452b67f}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{d946ff03-d5a3-4488-9f16-34f260bf0455}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{78b0fdac-d1f8-46b2-8a8d-7cd2e37f0d06}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{b86a04b1-01be-4bd9-bd78-a25a40651f74}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{2b3616a5-1c27-47a4-8ad3-4228a227cb69}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{d6ace5c0-b9a8-4216-8a5e-a61731657d38}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Snapshot" id="{aadbb74e-e208-40ec-baa7-1a4a80f49a6e}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Reverb_Large</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{a1197cab-76c8-4da4-a41f-969ff1afdca4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{be41c535-790c-44af-97ec-d42f4b1ecdf3}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{22ed449d-66fd-4e01-a7f4-bf1262294467}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{17290f2b-513d-4895-afc1-ddee3f496f80}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotMasterTrack">
|
||||||
|
<destination>{f3753c6d-0e00-4048-80ae-a28b85b0f73f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotProperties">
|
||||||
|
<destination>{b4790185-d840-481c-a896-6a0ee18fc8ee}</destination>
|
||||||
|
<destination>{7751a4c1-f824-41cc-871f-20da45436ab1}</destination>
|
||||||
|
<destination>{881c1e4d-1f69-4e7d-a789-36bcaea4546e}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="snapshotTracks">
|
||||||
|
<destination>{7ea88416-9e28-42dd-a119-a396b05b6155}</destination>
|
||||||
|
<destination>{041ac4a1-8633-42e1-b468-9a2a7fae84fb}</destination>
|
||||||
|
<destination>{19edce66-d431-439f-963d-90cc7239d9b7}</destination>
|
||||||
|
<destination>{69fb43fa-3638-4c73-8c8b-b72555b7da91}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{be41c535-790c-44af-97ec-d42f4b1ecdf3}" />
|
||||||
|
<object class="MarkerTrack" id="{22ed449d-66fd-4e01-a7f4-bf1262294467}" />
|
||||||
|
<object class="Timeline" id="{17290f2b-513d-4895-afc1-ddee3f496f80}" />
|
||||||
|
<object class="SnapshotMasterTrack" id="{f3753c6d-0e00-4048-80ae-a28b85b0f73f}" />
|
||||||
|
<object class="SnapshotProperty" id="{b4790185-d840-481c-a896-6a0ee18fc8ee}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{d946ff03-d5a3-4488-9f16-34f260bf0455}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{7751a4c1-f824-41cc-871f-20da45436ab1}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{1b9efed9-690a-49f4-8678-5884329f9f10}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotProperty" id="{881c1e4d-1f69-4e7d-a789-36bcaea4546e}">
|
||||||
|
<property name="propertyName">
|
||||||
|
<value>level</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automatableObject">
|
||||||
|
<destination>{c9b269a2-d142-4357-9aa3-23a95f5b16f7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{7ea88416-9e28-42dd-a119-a396b05b6155}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{95a057b4-7ce0-471e-96b5-2b4c636024cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{041ac4a1-8633-42e1-b468-9a2a7fae84fb}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{19edce66-d431-439f-963d-90cc7239d9b7}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SnapshotTrack" id="{69fb43fa-3638-4c73-8c8b-b72555b7da91}">
|
||||||
|
<relationship name="mixerStrip">
|
||||||
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
||||||
@@ -1,6 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<objects serializationModel="Studio.02.03.00">
|
<objects serializationModel="Studio.02.03.00">
|
||||||
<object class="SnapshotList" id="{95ae9b08-36b1-4258-a801-767b3d112a0e}">
|
<object class="SnapshotList" id="{95ae9b08-36b1-4258-a801-767b3d112a0e}">
|
||||||
|
<relationship name="items">
|
||||||
|
<destination>{aadbb74e-e208-40ec-baa7-1a4a80f49a6e}</destination>
|
||||||
|
<destination>{5036dc7c-960e-48e0-87ed-8aed093ae1bb}</destination>
|
||||||
|
<destination>{503c1af1-3ca9-412c-a3bd-d42dd2f3004d}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="mixer">
|
<relationship name="mixer">
|
||||||
<destination>{a1197cab-76c8-4da4-a41f-969ff1afdca4}</destination>
|
<destination>{a1197cab-76c8-4da4-a41f-969ff1afdca4}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
|
|||||||
+6
-6
@@ -8,6 +8,10 @@
|
|||||||
"name": "ppppVBBPPP",
|
"name": "ppppVBBPPP",
|
||||||
"score": 478.0
|
"score": 478.0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "tommy",
|
||||||
|
"score": 478.0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "mmmoo",
|
"name": "mmmoo",
|
||||||
"score": 473.0
|
"score": 473.0
|
||||||
@@ -45,8 +49,8 @@
|
|||||||
"score": 446.0
|
"score": 446.0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Samuel",
|
"name": ",..,",
|
||||||
"score": 441.0
|
"score": 436.0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "terrrffgggjh",
|
"name": "terrrffgggjh",
|
||||||
@@ -55,10 +59,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rry",
|
"name": "rry",
|
||||||
"score": 428.0
|
"score": 428.0
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "rq,,tim",
|
|
||||||
"score": 423.0
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user