1
0
forked from cgvr/DeltaVR

10 Commits

Author SHA1 Message Date
fe2f08f7a3 fixed a typo 2025-12-31 15:17:14 +02:00
Timur Nizamov
50b043bad5 fixing git 2025-12-27 18:12:45 +02:00
Timur Nizamov
a65562e701 Initial testinf of ReverbRooms and Snapshots, fire alarm logic is improved 2025-12-27 17:59:09 +02:00
1a9746bb3c Merge branch 'SamWorkset' of https://cgvrgit.ulno.net/cgvr/DeltaVR into SamWorkset 2025-12-27 13:57:09 +02:00
Timur Nizamov
23e453de77 fire alarm done, but the button will restart it after initial pressing 2025-12-26 19:57:14 +02:00
Timur Nizamov
6a90182014 Added 1 FMOD event 2025-12-23 18:17:29 +02:00
Timur Nizamov
34d102bcf4 Some FMOD events changed 2025-12-23 18:03:10 +02:00
174582e56e fixed wierd hand offset issue, needs testing. 2025-12-22 00:39:36 +02:00
Timur Nizamov
50dba2cd81 Some fixes made, object picking logic added 2025-12-21 00:01:28 +02:00
Timur Nizamov
27d5fdd68c klaviatuur parandatud 2025-12-17 20:04:12 +02:00
125 changed files with 11102 additions and 8216 deletions

View File

@@ -78,7 +78,7 @@ public class KeyboardManager : NetworkBehaviour
string letter = label.text;
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, button.gameObject);
switch (_shiftMode)
{
case ShiftMode.Lowercase:
@@ -99,7 +99,7 @@ public class KeyboardManager : NetworkBehaviour
void OnShiftPressed()
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, shiftButton.gameObject);
_shiftMode = _shiftMode switch
{
@@ -114,7 +114,7 @@ public class KeyboardManager : NetworkBehaviour
void OnBackspacePressed()
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, backspaceButton.gameObject);
if (_input.Length > 0)
_input = _input.Substring(0, _input.Length - 1);
@@ -123,7 +123,7 @@ public class KeyboardManager : NetworkBehaviour
void OnEnterPressed()
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, enterButton.gameObject);
if (_input.Length > 0)
{
@@ -134,7 +134,7 @@ public class KeyboardManager : NetworkBehaviour
void OnSpacePressed()
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterEnter, spaceButton.gameObject);
addToInput(" ");
UpdateOutput();

View File

@@ -4960,7 +4960,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: a2836e36774ca1c4bbbee976e17b649c, type: 3}
m_Name:
m_EditorClassIdentifier:
_componentIndexCache: 5
_componentIndexCache: 4
_addedNetworkObject: {fileID: 1717143407103097221}
_networkObjectCache: {fileID: 1717143407103097221}
_synchronizeParent: 0
@@ -5130,6 +5130,7 @@ GameObject:
- component: {fileID: 933290339694180838}
- component: {fileID: 2246675829434997248}
- component: {fileID: 1717143407103097221}
- component: {fileID: 2818003123056565107}
m_Layer: 0
m_Name: PaintGun
m_TagString: Untagged
@@ -5153,7 +5154,7 @@ Transform:
- {fileID: 4826320045276546127}
- {fileID: 316164716384481213}
m_Father: {fileID: 0}
m_RootOrder: 0
m_RootOrder: -1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 15}
--- !u!95 &894335529310106930
Animator:
@@ -5426,7 +5427,6 @@ MonoBehaviour:
- {fileID: 2246675829434997248}
- {fileID: 7380372828037789915}
- {fileID: 6466137562046178737}
- {fileID: 0}
- {fileID: 6641346233749009521}
- {fileID: 7265139984553989061}
<ParentNetworkObject>k__BackingField: {fileID: 0}
@@ -5442,6 +5442,19 @@ MonoBehaviour:
<SceneId>k__BackingField: 0
<AssetPathHash>k__BackingField: 8708812106909896480
_sceneNetworkObjects: []
--- !u!114 &2818003123056565107
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5253637933564617113}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 7405dee79e06eca4795d2d3f39801f47, type: 3}
m_Name:
m_EditorClassIdentifier:
grabSoundType: 2
--- !u!1 &8789365678454855824
GameObject:
m_ObjectHideFlags: 0
@@ -5486,7 +5499,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: a2836e36774ca1c4bbbee976e17b649c, type: 3}
m_Name:
m_EditorClassIdentifier:
_componentIndexCache: 4
_componentIndexCache: 3
_addedNetworkObject: {fileID: 1717143407103097221}
_networkObjectCache: {fileID: 1717143407103097221}
_synchronizeParent: 0

View File

@@ -32,7 +32,7 @@ public class FloorButtonVisualizer : MonoBehaviour
{
buttonImage.sprite = ActiveSprite;
// Play FMOD sound here
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, buttonImage.gameObject);
}
public void OnDeselect(BaseEventData eventData) // joystick moves away

View File

@@ -0,0 +1,9 @@
using UnityEngine;
using static FMODEvents;
public class GrabAudioProfile : MonoBehaviour
{
[SerializeField] private GrabSoundType grabSoundType = GrabSoundType.Default;
public GrabSoundType GrabSoundType => grabSoundType;
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 7405dee79e06eca4795d2d3f39801f47
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -23,7 +23,7 @@ public class HoverSlideButton : MonoBehaviour, IPointerEnterHandler, IPointerExi
public void OnPointerEnter(PointerEventData eventData)
{
SlideToPosition(onPosition);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject); //3d oneshot sound
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, buttonTransform.gameObject); //3d oneshot sound
}
public void OnPointerExit(PointerEventData eventData)

View File

@@ -91,7 +91,7 @@ public class MenuTeleportButton : MonoBehaviour
button.targetGraphic.GetComponent<Image>().sprite = HoverSprite;
}
// Play FMOD hover sound
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, button.gameObject);
}
public void OnDeselect(BaseEventData eventData)

View File

@@ -2,6 +2,8 @@ using _PROJECT.NewHandPresence;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.XR.Interaction.Toolkit;
using static FMODEvents;
using FMODUnity;
public class TutorialAudioListener : MonoBehaviour
{
@@ -61,6 +63,9 @@ public class TutorialAudioListener : MonoBehaviour
locomotionConfigurator.OnLocomotionToggled += HandleLocomotionToggled;
locomotionConfigurator.OnSpeedChanged += HandleSpeedChanged;
}
if (tutorialController != null)
tutorialController.OnGrab += HandleGrab;
}
private void OnDisable()
@@ -82,6 +87,8 @@ public class TutorialAudioListener : MonoBehaviour
locomotionConfigurator.OnLocomotionToggled -= HandleLocomotionToggled;
locomotionConfigurator.OnSpeedChanged -= HandleSpeedChanged;
}
if (tutorialController != null)
tutorialController.OnGrab -= HandleGrab;
}
private void HandleLocomotionToggled(bool enabled)
@@ -158,4 +165,42 @@ public class TutorialAudioListener : MonoBehaviour
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Steps, gameObject);
Debug.Log("[TeleportationListen] Teleport sound played.");
}
private EventReference GetGrabEvent(GrabSoundType type)
{
switch (type)
{
case GrabSoundType.Bow:
return FMODEvents.Instance.BowGrab;
case GrabSoundType.Sprayer:
return FMODEvents.Instance.SprayerGrab;
//Add more objects for grabbing here and do not forget to define them in FMODEvents.cs
//Add the GrabAudioProfile.cs component to an object instance
default:
return FMODEvents.Instance.DefaultGrab;
}
}
private void HandleGrab(XRGrabInteractable grab)
{
if (grab == null)
return;
var profile = grab.GetComponent<GrabAudioProfile>();
GrabSoundType type = profile != null
? profile.GrabSoundType
: GrabSoundType.Default;
EventReference grabEvent = GetGrabEvent(type);
Debug.Log(grabEvent);
AudioManager.Instance.PlayAttachedInstance(grabEvent, grab.gameObject);
}
}

View File

@@ -40,6 +40,7 @@ namespace _PROJECT.NewHandPresence
private List<XRGrabInteractable> _grabInteractables = new List<XRGrabInteractable>();
private XRGrabInteractable _grabInteractable;
public event Action<XRGrabInteractable> OnGrab;
private GameObject _billboard;
@@ -219,6 +220,11 @@ namespace _PROJECT.NewHandPresence
private void OnGripPerformed(SelectEnterEventArgs arg0)
{
var grab = arg0.interactableObject as XRGrabInteractable;
// Notify any listeners
OnGrab?.Invoke(grab);
if (_state != TutorialState.Grip) return;
Debug.Log("Grip performed");
UpdateState(_state.Next());

View File

@@ -1,43 +1,28 @@
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Remoting.Messaging;
using UnityEngine;
using UnityEngine.PlayerLoop;
using UnityEngine.XR.Content.Interaction;
using FMOD.Studio;
public class AlarmTrigger : MonoBehaviour
{
public XRPushButton PushButton;
public AudioSource AlarmSequence;
public AudioSource VentilationSequence;
private EventInstance RoomHum;
private EventInstance AlarmSound;
private FirstPersonOcclusion occlusion;
private bool hasAlarm = false;
private void Awake()
{
RoomHum = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomHumming); //initialise the instance
RoomHum.setParameterByName("AlarmLogic", 1);
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //make it 3d
//AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
//AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //make it 3d
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
occlusion = GetComponent<FirstPersonOcclusion>();
occlusion = GetComponent<FirstPersonOcclusion>(); //apply occlusion
if (occlusion != null)
occlusion.InitialiseWithInstance(RoomHum);
{
occlusion.InitialiseWithInstance(AlarmSound);
}
}
void Start()
{
RoomHum.start();
//start playing the sound
if (PushButton != null)
{
@@ -51,24 +36,17 @@ public class AlarmTrigger : MonoBehaviour
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, PushButton.gameObject); //3d oneshot instance
Debug.Log("Alarm button Pressed!");
RoomHum.setParameterByName("AlarmLogic", 0);
hasAlarm = true;
if (!AudioManager.IsPlaying(AlarmSound))
{
AlarmSound.start();
}
}
void Update()
{
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating 3d attributes
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating 3d attributes
if (hasAlarm && !AudioManager.IsPlaying(AlarmSound)) // If alarm state has ended.
{
VentilationSequence.Play(); // Return to normal.
RoomHum.start();
AlarmSound.stop(FMOD.Studio.STOP_MODE.ALLOWFADEOUT);
hasAlarm = false;
}
}
}

View File

@@ -96,10 +96,6 @@ PrefabInstance:
type: 3}
insertIndex: -1
addedObject: {fileID: 3964068808109647281}
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: ac65e655dd40bcd48b72b3f8ddcf45bd,
type: 3}
insertIndex: -1
addedObject: {fileID: 2488785156293713400}
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: ac65e655dd40bcd48b72b3f8ddcf45bd,
type: 3}
insertIndex: -1
@@ -133,129 +129,6 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: 6074735673208717538, guid: ac65e655dd40bcd48b72b3f8ddcf45bd, type: 3}
--- !u!82 &2488785156293713400
AudioSource:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7023167506039495560}
m_Enabled: 1
serializedVersion: 4
OutputAudioMixerGroup: {fileID: 0}
m_audioClip: {fileID: 8300000, guid: 5bcb02b6a0d913d4c90781538c787b2f, type: 3}
m_PlayOnAwake: 1
m_Volume: 0.05
m_Pitch: 1
Loop: 1
Mute: 0
Spatialize: 0
SpatializePostEffects: 0
Priority: 128
DopplerLevel: 1
MinDistance: 1
MaxDistance: 10
Pan2D: 0
rolloffMode: 2
BypassEffects: 0
BypassListenerEffects: 0
BypassReverbZones: 0
rolloffCustomCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0.1
value: 1
inSlope: -10.0039835
outSlope: -10.0039835
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.2
value: 0.5
inSlope: -2.5009959
outSlope: -2.5009959
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.4
value: 0.25
inSlope: -0.62524897
outSlope: -0.62524897
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.7940491
value: 0.057891846
inSlope: -0.27374932
outSlope: -0.27374932
tangentMode: 0
weightedMode: 0
inWeight: 0.24773687
outWeight: 0
- serializedVersion: 3
time: 1
value: 0.018304445
inSlope: -0.10003988
outSlope: -0.10003988
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
panLevelCustomCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
spreadCustomCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
reverbZoneMixCustomCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
--- !u!114 &7307865721977554787
MonoBehaviour:
m_ObjectHideFlags: 0
@@ -279,4 +152,4 @@ MonoBehaviour:
PlayerOcclusionWidening: 1
OcclusionLayer:
serializedVersion: 2
m_Bits: 268442624
m_Bits: 268438528

View File

@@ -234,6 +234,7 @@ GameObject:
- component: {fileID: 7888619987859216817}
- component: {fileID: 4423156612440135391}
- component: {fileID: 7492444969113415356}
- component: {fileID: 7342908215105292480}
m_Layer: 2
m_Name: TwoHandedBow
m_TagString: Untagged
@@ -258,7 +259,7 @@ Transform:
- {fileID: 390935087474091724}
- {fileID: 4619910383191300727}
m_Father: {fileID: 0}
m_RootOrder: 0
m_RootOrder: -1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!136 &6168004718997640786
CapsuleCollider:
@@ -663,7 +664,19 @@ MonoBehaviour:
arrowPrefab: {fileID: 5016704277711162129, guid: 5c51937e899ec9443a1757aefe9d49cb,
type: 3}
_arrowNetworkObject: {fileID: 0}
lastKnownLaunchDirection: {x: 0, y: 0, z: 0}
--- !u!114 &7342908215105292480
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6208239738837795797}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 7405dee79e06eca4795d2d3f39801f47, type: 3}
m_Name:
m_EditorClassIdentifier:
grabSoundType: 1
--- !u!1 &6812977384739690676
GameObject:
m_ObjectHideFlags: 0
@@ -817,9 +830,9 @@ LineRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_Positions:
- {x: -76.62825, y: 6.285376, z: -11.368651}
- {x: -76.61169, y: 5.785746, z: -11.358892}
- {x: -76.59347, y: 5.2361526, z: -11.348157}
- {x: -4.723722, y: 5.7963943, z: 73.294556}
- {x: -4.7137837, y: 5.496616, z: 73.30041}
- {x: -4.702852, y: 5.1668596, z: 73.30685}
m_Parameters:
serializedVersion: 3
widthMultiplier: 0.01

View File

@@ -52,7 +52,7 @@ MonoBehaviour:
_componentIndexCache: 0
_addedNetworkObject: {fileID: 4318509465820511600}
_networkObjectCache: {fileID: 4318509465820511600}
vrPlayerPrefab: {fileID: 3865165877314776266, guid: a82c8ed92875c7d4185d79d68468bfab,
vrPlayerPrefab: {fileID: 1455409453530882256, guid: a82c8ed92875c7d4185d79d68468bfab,
type: 3}
kbmPlayerPrefab: {fileID: 8146527781413792986, guid: b0c478e5f07e4ab47af03d6f29f1302a,
type: 3}

View File

@@ -30,7 +30,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 35
m_RootOrder: -1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &2377358742638333032
MonoBehaviour:
@@ -55,4 +55,4 @@ MonoBehaviour:
PlayerOcclusionWidening: 1
OcclusionLayer:
serializedVersion: 2
m_Bits: 2048
m_Bits: 268438528

View File

@@ -4854,6 +4854,7 @@ GameObject:
- component: {fileID: 412610394335443936}
- component: {fileID: 7884199987669606180}
- component: {fileID: 215482987}
- component: {fileID: 6487605284439918203}
m_Layer: 0
m_Name: Left Thin Frame
m_TagString: Untagged
@@ -4949,6 +4950,33 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
--- !u!54 &6487605284439918203
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8583638621924436570}
serializedVersion: 4
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_CenterOfMass: {x: 0, y: 0, z: 0}
m_InertiaTensor: {x: 1, y: 1, z: 1}
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_ImplicitCom: 1
m_ImplicitTensor: 1
m_UseGravity: 0
m_IsKinematic: 1
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!1 &8645113319109209617
GameObject:
m_ObjectHideFlags: 0

View File

@@ -11,7 +11,6 @@ using STOP_MODE = FMOD.Studio.STOP_MODE;
public class AudioManager : MonoBehaviour
{
//VCAs (VCA buses) are mainly used for volume control
//Regular routing buses routing are for the remaining logic, for example, within the FMOD itself to put FMOD events inside the Mixer (Mixer Routing).
//Regular routing buses are used when we make some attenuation based on parameters and write the logic in code for Unity.
@@ -232,6 +231,12 @@ public class AudioManager : MonoBehaviour
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...
//=====//
@@ -272,12 +277,6 @@ public class AudioManager : MonoBehaviour
}
public static bool IsPlaying()
{
musicEventInstance.getPlaybackState(out PLAYBACK_STATE state);
return state != PLAYBACK_STATE.STOPPED;
}
//=====//
//=====//

View File

@@ -14,8 +14,11 @@ public class FMODEvents : MonoBehaviour
[field: SerializeField] public EventReference Teleport { get; private set; }
[field: SerializeField] public EventReference UFODestroy { get; private set; }
[field: SerializeField] public EventReference PortalEnter { get; private set; }
[field: SerializeField] public EventReference SprayerTake { get; private set; }
[field: SerializeField] public EventReference SprayerGrab { get; private set; }
[field: SerializeField] public EventReference DefaultGrab { get; private set; }
[field: SerializeField] public EventReference BowGrab { get; private set; }
[field: SerializeField] public EventReference Spray { get; private set; }
[field: SerializeField] public EventReference Coughing { get; private set; }
[field: Header("CAR")]
[field: SerializeField] public EventReference DoorOpen { get; private set; }
@@ -60,6 +63,14 @@ public class FMODEvents : MonoBehaviour
public static FMODEvents Instance { get; private set; }
public enum GrabSoundType
{
Default,
Bow,
Sprayer
}
private void Awake()
{
if (Instance != null)

View File

@@ -2,7 +2,7 @@ using UnityEngine;
using FMODUnity;
using FMOD.Studio;
using System.Collections;
using System.Collections.Generic; // ADDED
using System.Collections.Generic;
public class FirstPersonOcclusion : MonoBehaviour
{
@@ -26,11 +26,7 @@ public class FirstPersonOcclusion : MonoBehaviour
private Color colour;
private bool initialisedExternally = false;
// ADDED: now stores ALL event instances that must be occluded
private List<EventInstance> managedInstances = new List<EventInstance>();
public void InitialiseWithInstance(EventInstance instance)
{
AudioOccluded = instance;
@@ -42,13 +38,14 @@ public class FirstPersonOcclusion : MonoBehaviour
GetComponent<Rigidbody>()
);
managedInstances.Add(AudioOccluded); // ADDED
//instance.setParameterByName("Occlusion", 1f, true);
managedInstances.Add(AudioOccluded);
AudioOccluded.getDescription(out AudioDes);
AudioDes.getMinMaxDistance(out float min, out MaxDistance);
}
// ADDED: allows adding extra FMOD instances for occlusion
public void AddInstance(EventInstance instance)
{
if (instance.isValid())
@@ -63,7 +60,6 @@ public class FirstPersonOcclusion : MonoBehaviour
}
}
private IEnumerator Start()
{
// If already initialised, skip internal creation
@@ -191,6 +187,11 @@ public class FirstPersonOcclusion : MonoBehaviour
}
public bool HasInstance(EventInstance instance)
{
return managedInstances.Contains(instance);
}
private void SetParameter()
{
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.

Binary file not shown.

Binary file not shown.

View File

@@ -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>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{9286ccea-5877-42fa-8bd4-46c310d0694c}">
<property name="assetPath">
<value>Objects, Container, Plastic Lunch Box, Squeaky Plastic, Handle, Grab 03 SND114930 S07.wav</value>
</property>
<property name="frequencyInKHz">
<value>96</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>0.55684374999999997</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{a0a31790-658e-46be-842c-29b85399f392}">
<property name="assetPath">
<value>Objects, Container, Plastic Lunch Box, Squeaky Plastic, Handle, Grab 03 SND114930 S03.wav</value>
</property>
<property name="frequencyInKHz">
<value>96</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>0.59418749999999998</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{b5c953c9-7029-42fd-8fb5-89ae1f96b0d3}">
<property name="assetPath">
<value>Cloth, Handle, Grab Person Wearing Raincoat SND16659 S00.wav</value>
</property>
<property name="frequencyInKHz">
<value>96</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>1.1392395833333333</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{bad7e6b0-d8cd-4e53-bc7f-b34e324a6128}">
<property name="assetPath">
<value>Cloth, Handle, Grab Person Wearing Raincoat SND16659 S01.wav</value>
</property>
<property name="frequencyInKHz">
<value>96</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>1.09059375</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{caeaf344-2411-40d5-a7de-b247f15184e7}">
<property name="assetPath">
<value>Objects, Container, Plastic Lunch Box, Squeaky Plastic, Handle, Grab 03 SND114930 S10.wav</value>
</property>
<property name="frequencyInKHz">
<value>96</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>0.81999999999999995</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>

View File

@@ -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>

View File

@@ -283,7 +283,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -292,7 +291,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -372,7 +370,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{9024c426-22dd-4b85-a1c7-25b1e4b2705c}">
@@ -584,7 +582,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{7e92f7ee-491d-40a1-8f2a-52c98b4bcc43}">
@@ -621,7 +619,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -638,7 +635,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -8,7 +8,7 @@
<value>5</value>
</property>
<relationship name="folder">
<destination>{ddc32c09-2c24-49ac-ad42-6ad835514fc4}</destination>
<destination>{dde91308-d50f-4a55-aaba-77eab8d7dad8}</destination>
</relationship>
<relationship name="mixer">
<destination>{07883160-4348-428f-8bd3-ee5bccab2fd8}</destination>
@@ -251,7 +251,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -260,7 +259,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -589,7 +587,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -606,7 +603,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -1,211 +1,215 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="Event" id="{49250d3c-8883-4a6c-be4b-cc79d52cb3b3}">
<object class="Event" id="{0711d170-97d7-4d33-bb86-4cd6feb75838}">
<property name="name">
<value>WaterSpray</value>
<value>DefaultGrab</value>
</property>
<property name="outputFormat">
<value>5</value>
</property>
<relationship name="folder">
<destination>{3775966a-99f2-44af-92c6-1acbd0ff49ab}</destination>
<destination>{dde91308-d50f-4a55-aaba-77eab8d7dad8}</destination>
</relationship>
<relationship name="mixer">
<destination>{48e983e2-6a75-4019-b653-03fc1bbd1430}</destination>
<destination>{cf005fb9-a12a-42e0-861f-c0972eca3c7a}</destination>
</relationship>
<relationship name="masterTrack">
<destination>{62e0a177-12f9-40f2-bfe8-a5a4363d7d7b}</destination>
<destination>{0f003c06-8d9d-4351-b5d5-107ae4c5c055}</destination>
</relationship>
<relationship name="mixerInput">
<destination>{20811709-c08b-4364-9e82-6c81fd54f7ee}</destination>
<destination>{2c7f9c52-d4ac-4c60-8f3e-3a1d87824ac1}</destination>
</relationship>
<relationship name="automatableProperties">
<destination>{a90bfbd8-a942-4e29-a3d0-191ed6f33235}</destination>
<destination>{f059283b-7af6-41ad-b435-fa955e98b4ed}</destination>
</relationship>
<relationship name="markerTracks">
<destination>{33d491cf-ae4d-4676-9c35-c2bc66b608f6}</destination>
<destination>{496942b1-c376-45d4-951f-93d9ff37d4fc}</destination>
</relationship>
<relationship name="groupTracks">
<destination>{4c7f46bd-bc46-4bb2-96dd-82bbbf85fb2b}</destination>
<destination>{e51ef441-9c0b-4656-aaa9-d920cb97b67d}</destination>
</relationship>
<relationship name="timeline">
<destination>{412ba66c-6cdc-4d4c-9a0f-0633ad5a1bbe}</destination>
<destination>{f18b3db6-c5e3-407a-8228-f007b0aace89}</destination>
</relationship>
<relationship name="banks">
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
</relationship>
</object>
<object class="EventMixer" id="{48e983e2-6a75-4019-b653-03fc1bbd1430}">
<object class="EventMixer" id="{cf005fb9-a12a-42e0-861f-c0972eca3c7a}">
<relationship name="masterBus">
<destination>{9c60fe76-2516-4961-8c24-fa7aedd94111}</destination>
<destination>{50336718-bbe2-4e2f-ad9a-aef8a8836031}</destination>
</relationship>
</object>
<object class="MasterTrack" id="{62e0a177-12f9-40f2-bfe8-a5a4363d7d7b}">
<object class="MasterTrack" id="{0f003c06-8d9d-4351-b5d5-107ae4c5c055}">
<relationship name="mixerGroup">
<destination>{9c60fe76-2516-4961-8c24-fa7aedd94111}</destination>
<destination>{50336718-bbe2-4e2f-ad9a-aef8a8836031}</destination>
</relationship>
</object>
<object class="MixerInput" id="{20811709-c08b-4364-9e82-6c81fd54f7ee}">
<object class="MixerInput" id="{2c7f9c52-d4ac-4c60-8f3e-3a1d87824ac1}">
<relationship name="effectChain">
<destination>{ad6e2a2f-1e72-44e8-bd6a-0524529340f0}</destination>
<destination>{5e2c9fe9-be8c-410d-821d-436c2f994605}</destination>
</relationship>
<relationship name="panner">
<destination>{9774e532-b1a2-41c0-9f11-fac761ddc627}</destination>
<destination>{002987dc-f6fe-4b05-bb3d-7c4d49c728e1}</destination>
</relationship>
<relationship name="output">
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{a90bfbd8-a942-4e29-a3d0-191ed6f33235}">
<object class="EventAutomatableProperties" id="{f059283b-7af6-41ad-b435-fa955e98b4ed}">
<property name="minimumDistance">
<value>5</value>
</property>
<property name="maximumDistance">
<value>30</value>
<value>2</value>
</property>
</object>
<object class="MarkerTrack" id="{33d491cf-ae4d-4676-9c35-c2bc66b608f6}" />
<object class="GroupTrack" id="{4c7f46bd-bc46-4bb2-96dd-82bbbf85fb2b}">
<object class="MarkerTrack" id="{496942b1-c376-45d4-951f-93d9ff37d4fc}" />
<object class="GroupTrack" id="{e51ef441-9c0b-4656-aaa9-d920cb97b67d}">
<relationship name="modules">
<destination>{d6ade322-2ee7-4f92-9f9b-abb67bb31fec}</destination>
<destination>{6d263266-3d27-4beb-b49f-d0824f53d22b}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{bc8aa232-ead8-48a2-ba44-ff38e04b23d6}</destination>
<destination>{35d31054-7773-4860-922f-a75035b825c5}</destination>
</relationship>
</object>
<object class="Timeline" id="{412ba66c-6cdc-4d4c-9a0f-0633ad5a1bbe}">
<object class="Timeline" id="{f18b3db6-c5e3-407a-8228-f007b0aace89}">
<relationship name="modules">
<destination>{d6ade322-2ee7-4f92-9f9b-abb67bb31fec}</destination>
<destination>{6d263266-3d27-4beb-b49f-d0824f53d22b}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{9c60fe76-2516-4961-8c24-fa7aedd94111}">
<object class="EventMixerMaster" id="{50336718-bbe2-4e2f-ad9a-aef8a8836031}">
<relationship name="effectChain">
<destination>{dbdccfb1-d79c-4d48-af38-4758268ccab9}</destination>
<destination>{a934e3df-3b17-4047-b346-d49a854d8bae}</destination>
</relationship>
<relationship name="panner">
<destination>{77acd92e-f58d-4c79-a754-d1a2ca03e589}</destination>
<destination>{f3daa963-a43c-4bb2-971e-d33a8d019db1}</destination>
</relationship>
<relationship name="mixer">
<destination>{48e983e2-6a75-4019-b653-03fc1bbd1430}</destination>
<destination>{cf005fb9-a12a-42e0-861f-c0972eca3c7a}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{ad6e2a2f-1e72-44e8-bd6a-0524529340f0}">
<object class="MixerBusEffectChain" id="{5e2c9fe9-be8c-410d-821d-436c2f994605}">
<relationship name="effects">
<destination>{9df0942d-6d77-4770-b3f3-33108152294f}</destination>
<destination>{3603237e-9eab-48e4-8bcf-0e3749cf6b4a}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{9774e532-b1a2-41c0-9f11-fac761ddc627}" />
<object class="SingleSound" id="{d6ade322-2ee7-4f92-9f9b-abb67bb31fec}">
<object class="MixerBusPanner" id="{002987dc-f6fe-4b05-bb3d-7c4d49c728e1}" />
<object class="MultiSound" id="{6d263266-3d27-4beb-b49f-d0824f53d22b}">
<property name="length">
<value>12.754708333333335</value>
<value>0.80000000000000004</value>
</property>
<relationship name="fadeInCurve">
<destination>{416f8e74-158b-4756-b492-b0a31800e41a}</destination>
<relationship name="modulators">
<destination>{e6d933a7-2852-434a-b858-2efa9d09f5ee}</destination>
<destination>{9f9bcd96-a259-4146-989c-9adce7100612}</destination>
</relationship>
<relationship name="audioFile">
<destination>{76f81397-f8c3-4b79-bbce-c83ae0978233}</destination>
<relationship name="sounds">
<destination>{b523cc84-8993-433e-aa76-82bf38f5a291}</destination>
<destination>{439b321e-5104-4520-bc5a-520576393efe}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{bc8aa232-ead8-48a2-ba44-ff38e04b23d6}">
<object class="EventMixerGroup" id="{35d31054-7773-4860-922f-a75035b825c5}">
<property name="name">
<value>Audio 1</value>
</property>
<relationship name="effectChain">
<destination>{2a967457-4eac-45b2-af6c-22b2ff6bf7ca}</destination>
<destination>{f0990418-1f86-4879-8150-9b4cfeccb9dd}</destination>
</relationship>
<relationship name="panner">
<destination>{ab00634e-f37c-4247-b496-5e868fa0d01c}</destination>
<destination>{4951fdbd-57c9-4021-8c1b-a926ae65556b}</destination>
</relationship>
<relationship name="output">
<destination>{9c60fe76-2516-4961-8c24-fa7aedd94111}</destination>
<destination>{50336718-bbe2-4e2f-ad9a-aef8a8836031}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{dbdccfb1-d79c-4d48-af38-4758268ccab9}">
<object class="MixerBusEffectChain" id="{a934e3df-3b17-4047-b346-d49a854d8bae}">
<relationship name="effects">
<destination>{3338d0d5-2f8e-491f-9afc-32893fa8284d}</destination>
<destination>{8e8e3c14-5498-4b3c-b943-71d36e7fa26e}</destination>
<destination>{2cee11cd-c7f0-4d0e-b327-3377543ad24b}</destination>
<destination>{03a180be-1615-4a0b-baa3-e4a7516986b6}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{77acd92e-f58d-4c79-a754-d1a2ca03e589}" />
<object class="MixerBusFader" id="{9df0942d-6d77-4770-b3f3-33108152294f}" />
<object class="FadeCurve" id="{416f8e74-158b-4756-b492-b0a31800e41a}">
<relationship name="startPoint">
<destination>{1f241b99-ec3f-4949-85c5-b1e07635b8e3}</destination>
</relationship>
<relationship name="endPoint">
<destination>{4ca44dee-e6e2-4777-ae81-77d01282c257}</destination>
<object class="MixerBusPanner" id="{f3daa963-a43c-4bb2-971e-d33a8d019db1}" />
<object class="MixerBusFader" id="{3603237e-9eab-48e4-8bcf-0e3749cf6b4a}" />
<object class="RandomizerModulator" id="{e6d933a7-2852-434a-b858-2efa9d09f5ee}">
<property name="nameOfPropertyBeingModulated">
<value>pitch</value>
</property>
<property name="amount">
<value>4.5</value>
</property>
</object>
<object class="RandomizerModulator" id="{9f9bcd96-a259-4146-989c-9adce7100612}">
<property name="nameOfPropertyBeingModulated">
<value>startOffset</value>
</property>
<property name="amount">
<value>4</value>
</property>
</object>
<object class="SingleSound" id="{b523cc84-8993-433e-aa76-82bf38f5a291}">
<relationship name="audioFile">
<destination>{b5c953c9-7029-42fd-8fb5-89ae1f96b0d3}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{2a967457-4eac-45b2-af6c-22b2ff6bf7ca}">
<object class="SingleSound" id="{439b321e-5104-4520-bc5a-520576393efe}">
<relationship name="audioFile">
<destination>{bad7e6b0-d8cd-4e53-bc7f-b34e324a6128}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{f0990418-1f86-4879-8150-9b4cfeccb9dd}">
<relationship name="effects">
<destination>{5c9215cb-83e6-40e8-9905-cfd85ba6d47a}</destination>
<destination>{e7491c3c-a064-4c98-bf05-3625e9d6b311}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{ab00634e-f37c-4247-b496-5e868fa0d01c}" />
<object class="MixerBusFader" id="{3338d0d5-2f8e-491f-9afc-32893fa8284d}" />
<object class="PluginEffect" id="{8e8e3c14-5498-4b3c-b943-71d36e7fa26e}">
<object class="MixerBusPanner" id="{4951fdbd-57c9-4021-8c1b-a926ae65556b}" />
<object class="MixerBusFader" id="{2cee11cd-c7f0-4d0e-b327-3377543ad24b}" />
<object class="PluginEffect" id="{03a180be-1615-4a0b-baa3-e4a7516986b6}">
<relationship name="plugin">
<destination>{3311e45b-89b7-484a-9373-ec0879f2c196}</destination>
<destination>{8b51aa3c-ea01-43e4-9e5d-4bc030bb1ffb}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{1f241b99-ec3f-4949-85c5-b1e07635b8e3}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>0</value>
</property>
<property name="curveShape">
<value>0.333566755</value>
</property>
</object>
<object class="AutomationPoint" id="{4ca44dee-e6e2-4777-ae81-77d01282c257}">
<property name="position">
<value>0.70000000000000062</value>
</property>
<property name="value">
<value>1</value>
</property>
</object>
<object class="MixerBusFader" id="{5c9215cb-83e6-40e8-9905-cfd85ba6d47a}" />
<object class="Plugin" id="{3311e45b-89b7-484a-9373-ec0879f2c196}">
<object class="MixerBusFader" id="{e7491c3c-a064-4c98-bf05-3625e9d6b311}" />
<object class="Plugin" id="{8b51aa3c-ea01-43e4-9e5d-4bc030bb1ffb}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
</property>
<relationship name="pluginParameters">
<destination>{c610e2f4-e81a-44e6-82ae-992d7bdc9a27}</destination>
<destination>{9c6173c6-168d-4d7d-af66-634070c60184}</destination>
<destination>{1094b01a-9c79-4109-9be3-8ee59e0b6b31}</destination>
<destination>{343fdef6-5538-4b48-95f2-71b00549d9f7}</destination>
<destination>{12e5b55d-7495-4250-8539-d540b81287d4}</destination>
<destination>{1f8b5fae-4412-4add-8bd6-f63fd1521a26}</destination>
<destination>{3f2c8bd0-c197-47c0-b653-07dbb73c4d9e}</destination>
<destination>{347b3fc2-e2f1-4e0e-9da1-3d67f23a3d63}</destination>
<destination>{db41f5b1-7fdd-450c-b102-079bd6808c1f}</destination>
<destination>{d576b017-abf3-417c-9995-aa2e8f7f8bb0}</destination>
<destination>{12428843-3a70-4f3c-9f4a-404a9b16fd7a}</destination>
<destination>{5e83bdc5-806e-4b39-bd3f-fb4bf9427004}</destination>
<destination>{980e1ebd-bf6a-41ce-8181-640ca41c31bf}</destination>
<destination>{fa3e1f73-8557-4021-b332-980799cbe9af}</destination>
<destination>{66b80577-4601-4f1f-99ad-9c95385638ce}</destination>
<destination>{257cd97c-c20e-42b2-a94a-26912858aea2}</destination>
<destination>{a8c04c30-ee63-4a6c-84c2-2fae29308fec}</destination>
<destination>{55cf246d-b7b0-4436-944e-3ff03d529c25}</destination>
<destination>{4ce47145-3b68-4d55-9486-8960727dd854}</destination>
<destination>{89501438-7968-40e1-b82e-f1faf0ea9c2f}</destination>
<destination>{8eb2694d-c388-4eec-874a-7cf9cea6a9fd}</destination>
<destination>{1aa6abae-03ad-4fde-a703-7f88a4528835}</destination>
<destination>{5f7c8cca-836b-45f0-8168-e33193045ab8}</destination>
<destination>{ff926ae2-ae95-4448-92aa-d0e9f08daed8}</destination>
<destination>{491744e8-b972-4d1a-abc3-91cba4bb5760}</destination>
<destination>{f47fd101-7107-48c4-b701-7b66b7256c4b}</destination>
<destination>{aa155f36-6940-4329-b54a-f6db3b99dc5b}</destination>
<destination>{f3b9cd41-bb25-4f81-937f-536160d1a623}</destination>
<destination>{d24be94c-3f80-4a8d-a1c5-0a5fb966039f}</destination>
<destination>{efcae227-4501-44da-b1b9-48e9a3865be8}</destination>
<destination>{874aae18-a42b-4d88-a248-0cb5ed1e73e8}</destination>
<destination>{371edcb9-0bcf-43aa-804d-2ccee2ff29e6}</destination>
<destination>{87486f71-7269-456e-b0ff-1e9946fdca4a}</destination>
<destination>{b24d3485-2131-4887-b19d-9ecc342f805b}</destination>
<destination>{aa7be7ce-9e0f-4c19-aac8-2ce38f924df3}</destination>
<destination>{0148d6d5-2faf-41ae-9b47-7cf18b5a0921}</destination>
<destination>{fbfa9046-6617-4858-ba84-ff4d8a2d93f9}</destination>
<destination>{1bd4ba02-560b-4971-847b-026971203a38}</destination>
<destination>{c54d3502-1920-4c50-88b4-12e3235d09f3}</destination>
<destination>{8a2432ff-1d4a-42e8-80b2-1026959e57cd}</destination>
<destination>{13e0d4e9-e74f-4cb4-a304-96a87471907f}</destination>
<destination>{6cd38bc5-e9b7-44d0-b33d-3ab660b37917}</destination>
<destination>{e42d4d43-ce50-4b09-997b-2866afaba625}</destination>
<destination>{b51ed4fe-3be0-404f-97d0-d49582e0e826}</destination>
<destination>{fbd05c99-8b4f-4e8e-96e5-ef0b3ddc31c6}</destination>
<destination>{397c465e-16b7-4a97-a678-e72276d5db93}</destination>
<destination>{85179d36-772d-4968-adda-2e4755ef8e79}</destination>
<destination>{922367d3-9783-4ee0-8919-253e1fb4e0a0}</destination>
<destination>{27b6548f-9482-46bf-8fc2-f17d676b5201}</destination>
<destination>{e2c08b80-65ae-41e2-a8e9-102db4c7f0cc}</destination>
<destination>{8f89abbd-88b8-4a7e-832d-33f51d9518e0}</destination>
<destination>{bf7369ee-4cee-4933-84e9-e3d845664e8e}</destination>
<destination>{00f3ce37-dbca-4db8-b216-657faa59e0f9}</destination>
<destination>{8c46a3aa-7623-4017-8eac-49ca181ac8f4}</destination>
<destination>{dcff1cd9-997a-4110-a647-972928517c1a}</destination>
<destination>{659db57e-2c07-4415-b79f-07246436494a}</destination>
<destination>{e004be29-da68-46ca-8202-6ad870b1874d}</destination>
<destination>{a350c68c-0d24-4a0d-88a9-8a102251cc27}</destination>
<destination>{6557fb12-87e9-44ae-9597-e7778f586115}</destination>
<destination>{dab571d5-6b6e-4a71-badd-882a6233d3b9}</destination>
<destination>{10c266d0-2542-4832-ab31-7f97ac30ceb9}</destination>
<destination>{61cf764f-6121-4cb7-89bf-6c466ff1cae4}</destination>
<destination>{5b03d53e-5809-48b8-8f33-c2a837084384}</destination>
<destination>{0858c203-9354-4a3f-b3b9-9d7b242700ea}</destination>
<destination>{e67c8045-7cdc-4566-9a9e-ae6ce0a80e20}</destination>
<destination>{56f3c51f-cfca-4d33-9420-f43c795a860d}</destination>
<destination>{86ba8b52-f065-4c1f-990f-cb08eea54ef8}</destination>
<destination>{a7d7d55a-da16-4e89-8b0e-a73455df94e4}</destination>
<destination>{7c6bd044-f715-499e-80e2-5c46509fe063}</destination>
<destination>{0d1d135b-be60-4f83-b4d1-2bd4736f0c30}</destination>
<destination>{95049a10-7749-4f07-a29a-8c66c8d4ffb4}</destination>
<destination>{9dd348a1-fa5e-49b1-b547-a1a615428965}</destination>
</relationship>
</object>
<object class="DataPluginParameter" id="{c610e2f4-e81a-44e6-82ae-992d7bdc9a27}">
<object class="DataPluginParameter" id="{fbfa9046-6617-4858-ba84-ff4d8a2d93f9}">
<property name="name">
<value>SourcePos</value>
</property>
@@ -213,7 +217,7 @@
<value>-2</value>
</property>
</object>
<object class="DataPluginParameter" id="{9c6173c6-168d-4d7d-af66-634070c60184}">
<object class="DataPluginParameter" id="{1bd4ba02-560b-4971-847b-026971203a38}">
<property name="name">
<value>OverallGain</value>
</property>
@@ -221,12 +225,12 @@
<value>-1</value>
</property>
</object>
<object class="IntPluginParameter" id="{1094b01a-9c79-4109-9be3-8ee59e0b6b31}">
<object class="IntPluginParameter" id="{c54d3502-1920-4c50-88b4-12e3235d09f3}">
<property name="name">
<value>ApplyDA</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -235,7 +239,7 @@
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{343fdef6-5538-4b48-95f2-71b00549d9f7}">
<object class="IntPluginParameter" id="{8a2432ff-1d4a-42e8-80b2-1026959e57cd}">
<property name="name">
<value>ApplyAA</value>
</property>
@@ -249,12 +253,12 @@
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{12e5b55d-7495-4250-8539-d540b81287d4}">
<object class="IntPluginParameter" id="{13e0d4e9-e74f-4cb4-a304-96a87471907f}">
<property name="name">
<value>ApplyDir</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -263,7 +267,7 @@
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{1f8b5fae-4412-4add-8bd6-f63fd1521a26}">
<object class="IntPluginParameter" id="{6cd38bc5-e9b7-44d0-b33d-3ab660b37917}">
<property name="name">
<value>ApplyOccl</value>
</property>
@@ -277,7 +281,7 @@
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{3f2c8bd0-c197-47c0-b653-07dbb73c4d9e}">
<object class="IntPluginParameter" id="{e42d4d43-ce50-4b09-997b-2866afaba625}">
<property name="name">
<value>ApplyTrans</value>
</property>
@@ -291,7 +295,7 @@
<value>2</value>
</property>
</object>
<object class="BoolPluginParameter" id="{347b3fc2-e2f1-4e0e-9da1-3d67f23a3d63}">
<object class="BoolPluginParameter" id="{b51ed4fe-3be0-404f-97d0-d49582e0e826}">
<property name="name">
<value>ApplyRefl</value>
</property>
@@ -299,7 +303,7 @@
<value>false</value>
</property>
</object>
<object class="BoolPluginParameter" id="{db41f5b1-7fdd-450c-b102-079bd6808c1f}">
<object class="BoolPluginParameter" id="{fbd05c99-8b4f-4e8e-96e5-ef0b3ddc31c6}">
<property name="name">
<value>ApplyPath</value>
</property>
@@ -307,7 +311,7 @@
<value>true</value>
</property>
</object>
<object class="IntPluginParameter" id="{d576b017-abf3-417c-9995-aa2e8f7f8bb0}">
<object class="IntPluginParameter" id="{397c465e-16b7-4a97-a678-e72276d5db93}">
<property name="name">
<value>Interpolation</value>
</property>
@@ -321,7 +325,7 @@
<value>1</value>
</property>
</object>
<object class="FloatPluginParameter" id="{12428843-3a70-4f3c-9f4a-404a9b16fd7a}">
<object class="FloatPluginParameter" id="{85179d36-772d-4968-adda-2e4755ef8e79}">
<property name="name">
<value>DistAtt</value>
</property>
@@ -332,12 +336,12 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="IntPluginParameter" id="{5e83bdc5-806e-4b39-bd3f-fb4bf9427004}">
<object class="IntPluginParameter" id="{922367d3-9783-4ee0-8919-253e1fb4e0a0}">
<property name="name">
<value>DAType</value>
</property>
<property name="value">
<value>2</value>
<value>0</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -346,29 +350,29 @@
<value>4</value>
</property>
</object>
<object class="FloatPluginParameter" id="{980e1ebd-bf6a-41ce-8181-640ca41c31bf}">
<object class="FloatPluginParameter" id="{27b6548f-9482-46bf-8fc2-f17d676b5201}">
<property name="name">
<value>DAMinDist</value>
</property>
<property name="value">
<value>5</value>
<value>2</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{fa3e1f73-8557-4021-b332-980799cbe9af}">
<object class="FloatPluginParameter" id="{e2c08b80-65ae-41e2-a8e9-102db4c7f0cc}">
<property name="name">
<value>DAMaxDist</value>
</property>
<property name="value">
<value>30</value>
<value>20</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{66b80577-4601-4f1f-99ad-9c95385638ce}">
<object class="FloatPluginParameter" id="{8f89abbd-88b8-4a7e-832d-33f51d9518e0}">
<property name="name">
<value>AirAbsLow</value>
</property>
@@ -379,7 +383,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{257cd97c-c20e-42b2-a94a-26912858aea2}">
<object class="FloatPluginParameter" id="{bf7369ee-4cee-4933-84e9-e3d845664e8e}">
<property name="name">
<value>AirAbsMid</value>
</property>
@@ -390,7 +394,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{a8c04c30-ee63-4a6c-84c2-2fae29308fec}">
<object class="FloatPluginParameter" id="{00f3ce37-dbca-4db8-b216-657faa59e0f9}">
<property name="name">
<value>AirAbsHigh</value>
</property>
@@ -401,7 +405,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{55cf246d-b7b0-4436-944e-3ff03d529c25}">
<object class="FloatPluginParameter" id="{8c46a3aa-7623-4017-8eac-49ca181ac8f4}">
<property name="name">
<value>Directivity</value>
</property>
@@ -412,29 +416,29 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{4ce47145-3b68-4d55-9486-8960727dd854}">
<object class="FloatPluginParameter" id="{dcff1cd9-997a-4110-a647-972928517c1a}">
<property name="name">
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0</value>
<value>0.754999995</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{89501438-7968-40e1-b82e-f1faf0ea9c2f}">
<object class="FloatPluginParameter" id="{659db57e-2c07-4415-b79f-07246436494a}">
<property name="name">
<value>DipolePower</value>
</property>
<property name="value">
<value>1</value>
<value>1.29999995</value>
</property>
<property name="curve">
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{8eb2694d-c388-4eec-874a-7cf9cea6a9fd}">
<object class="FloatPluginParameter" id="{e004be29-da68-46ca-8202-6ad870b1874d}">
<property name="name">
<value>Occlusion</value>
</property>
@@ -445,7 +449,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="IntPluginParameter" id="{1aa6abae-03ad-4fde-a703-7f88a4528835}">
<object class="IntPluginParameter" id="{a350c68c-0d24-4a0d-88a9-8a102251cc27}">
<property name="name">
<value>TransType</value>
</property>
@@ -459,7 +463,7 @@
<value>1</value>
</property>
</object>
<object class="FloatPluginParameter" id="{5f7c8cca-836b-45f0-8168-e33193045ab8}">
<object class="FloatPluginParameter" id="{6557fb12-87e9-44ae-9597-e7778f586115}">
<property name="name">
<value>TransLow</value>
</property>
@@ -470,7 +474,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{ff926ae2-ae95-4448-92aa-d0e9f08daed8}">
<object class="FloatPluginParameter" id="{dab571d5-6b6e-4a71-badd-882a6233d3b9}">
<property name="name">
<value>TransMid</value>
</property>
@@ -481,7 +485,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{491744e8-b972-4d1a-abc3-91cba4bb5760}">
<object class="FloatPluginParameter" id="{10c266d0-2542-4832-ab31-7f97ac30ceb9}">
<property name="name">
<value>TransHigh</value>
</property>
@@ -492,7 +496,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{f47fd101-7107-48c4-b701-7b66b7256c4b}">
<object class="FloatPluginParameter" id="{61cf764f-6121-4cb7-89bf-6c466ff1cae4}">
<property name="name">
<value>DirMixLevel</value>
</property>
@@ -503,7 +507,7 @@
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="BoolPluginParameter" id="{aa155f36-6940-4329-b54a-f6db3b99dc5b}">
<object class="BoolPluginParameter" id="{5b03d53e-5809-48b8-8f33-c2a837084384}">
<property name="name">
<value>ReflBinaural</value>
</property>
@@ -511,7 +515,7 @@
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{f3b9cd41-bb25-4f81-937f-536160d1a623}">
<object class="FloatPluginParameter" id="{0858c203-9354-4a3f-b3b9-9d7b242700ea}">
<property name="name">
<value>ReflMixLevel</value>
</property>
@@ -522,7 +526,7 @@
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
</property>
</object>
<object class="BoolPluginParameter" id="{d24be94c-3f80-4a8d-a1c5-0a5fb966039f}">
<object class="BoolPluginParameter" id="{e67c8045-7cdc-4566-9a9e-ae6ce0a80e20}">
<property name="name">
<value>PathBinaural</value>
</property>
@@ -530,7 +534,7 @@
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{efcae227-4501-44da-b1b9-48e9a3865be8}">
<object class="FloatPluginParameter" id="{56f3c51f-cfca-4d33-9420-f43c795a860d}">
<property name="name">
<value>PathMixLevel</value>
</property>
@@ -541,7 +545,7 @@
<value>{(0.000000,0.000000)(1.000000,10.000000)}</value>
</property>
</object>
<object class="DataPluginParameter" id="{874aae18-a42b-4d88-a248-0cb5ed1e73e8}">
<object class="DataPluginParameter" id="{86ba8b52-f065-4c1f-990f-cb08eea54ef8}">
<property name="name">
<value>SimOutputs</value>
</property>
@@ -549,7 +553,7 @@
<value>0</value>
</property>
</object>
<object class="BoolPluginParameter" id="{371edcb9-0bcf-43aa-804d-2ccee2ff29e6}">
<object class="BoolPluginParameter" id="{a7d7d55a-da16-4e89-8b0e-a73455df94e4}">
<property name="name">
<value>DirectBinaural</value>
</property>
@@ -557,7 +561,7 @@
<value>true</value>
</property>
</object>
<object class="DataPluginParameter" id="{87486f71-7269-456e-b0ff-1e9946fdca4a}">
<object class="DataPluginParameter" id="{7c6bd044-f715-499e-80e2-5c46509fe063}">
<property name="name">
<value>DistRange</value>
</property>
@@ -565,7 +569,7 @@
<value>-6</value>
</property>
</object>
<object class="IntPluginParameter" id="{b24d3485-2131-4887-b19d-9ecc342f805b}">
<object class="IntPluginParameter" id="{0d1d135b-be60-4f83-b4d1-2bd4736f0c30}">
<property name="name">
<value>SimOutHandle</value>
</property>
@@ -579,7 +583,7 @@
<value>10000</value>
</property>
</object>
<object class="IntPluginParameter" id="{aa7be7ce-9e0f-4c19-aac8-2ce38f924df3}">
<object class="IntPluginParameter" id="{95049a10-7749-4f07-a29a-8c66c8d4ffb4}">
<property name="name">
<value>OutputFormat</value>
</property>
@@ -593,7 +597,7 @@
<value>2</value>
</property>
</object>
<object class="BoolPluginParameter" id="{0148d6d5-2faf-41ae-9b47-7cf18b5a0921}">
<object class="BoolPluginParameter" id="{9dd348a1-fa5e-49b1-b547-a1a615428965}">
<property name="name">
<value>PathNormEQ</value>
</property>

View File

@@ -68,11 +68,8 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{c76e816d-57c8-456c-a329-17eb0603d09f}">
<property name="minimumDistance">
<value>5</value>
</property>
<property name="maximumDistance">
<value>50</value>
<value>25</value>
</property>
</object>
<object class="MarkerTrack" id="{59eaef25-4ee8-45f7-92cb-43f884ffe19f}" />
@@ -211,8 +208,8 @@
<object class="MixerBusEffectChain" id="{fea1caca-e5b2-4e66-bd5e-33264c5623f8}">
<relationship name="effects">
<destination>{018473e4-0f0a-45f3-bcda-c733c71ad55e}</destination>
<destination>{a14fd543-4bfd-4762-b7bf-eb0826291ed8}</destination>
<destination>{1b59e476-ff30-46fa-be6f-43a65cbf5b64}</destination>
<destination>{a14fd543-4bfd-4762-b7bf-eb0826291ed8}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{ea967f00-b001-4510-af81-c2c8a34c94e3}" />
@@ -267,11 +264,6 @@
</relationship>
</object>
<object class="MixerBusFader" id="{018473e4-0f0a-45f3-bcda-c733c71ad55e}" />
<object class="PluginEffect" id="{a14fd543-4bfd-4762-b7bf-eb0826291ed8}">
<relationship name="plugin">
<destination>{9feee028-da49-4c2f-9018-226dcf0f0bc2}</destination>
</relationship>
</object>
<object class="MultibandEqEffect" id="{1b59e476-ff30-46fa-be6f-43a65cbf5b64}">
<property name="frequencyA">
<value>19834.9668</value>
@@ -283,6 +275,11 @@
<destination>{f24ecb42-679a-4dd2-9d99-fd6d472bd1ef}</destination>
</relationship>
</object>
<object class="PluginEffect" id="{a14fd543-4bfd-4762-b7bf-eb0826291ed8}">
<relationship name="plugin">
<destination>{9feee028-da49-4c2f-9018-226dcf0f0bc2}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{ce3bc340-acd9-4d8e-b42b-a353f4684c95}">
<property name="position">
<value>0</value>
@@ -346,6 +343,14 @@
<value>-3.46837234</value>
</property>
</object>
<object class="Automator" id="{f24ecb42-679a-4dd2-9d99-fd6d472bd1ef}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{789ce553-d213-4652-8f66-d3b6138b3699}</destination>
</relationship>
</object>
<object class="Plugin" id="{9feee028-da49-4c2f-9018-226dcf0f0bc2}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
@@ -389,19 +394,21 @@
<destination>{0a741906-d807-4c26-a54e-d0da101749fe}</destination>
</relationship>
</object>
<object class="Automator" id="{f24ecb42-679a-4dd2-9d99-fd6d472bd1ef}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{789ce553-d213-4652-8f66-d3b6138b3699}</destination>
<object class="AutomationCurve" id="{789ce553-d213-4652-8f66-d3b6138b3699}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{a95234b9-f8dd-4043-8669-67d290c6fb26}</destination>
<destination>{c22d4e22-49ba-4f40-b2ef-ddc8dd15ce81}</destination>
<destination>{56dbb96b-e49d-4a8b-a678-97662e9bd824}</destination>
<destination>{b067664e-d331-4b79-ad33-4c978d17920a}</destination>
</relationship>
</object>
<object class="DataPluginParameter" id="{6b8b3048-eda3-4004-a918-5ad330e6ee05}">
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -410,7 +417,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -420,7 +426,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>1</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -490,7 +496,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{96e694f8-150c-4aea-a890-308e32f4e4e7}">
@@ -545,7 +551,7 @@
<value>DAMinDist</value>
</property>
<property name="value">
<value>5</value>
<value>1</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -556,7 +562,7 @@
<value>DAMaxDist</value>
</property>
<property name="value">
<value>50</value>
<value>25</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -611,7 +617,7 @@
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0.899999976</value>
<value>0</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
@@ -622,7 +628,7 @@
<value>DipolePower</value>
</property>
<property name="value">
<value>1.57999992</value>
<value>1</value>
</property>
<property name="curve">
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
@@ -702,7 +708,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{d5ba991c-e2a1-435c-90eb-093664d20e99}">
@@ -739,7 +745,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -756,7 +761,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>
@@ -797,17 +801,6 @@
<value>false</value>
</property>
</object>
<object class="AutomationCurve" id="{789ce553-d213-4652-8f66-d3b6138b3699}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{a95234b9-f8dd-4043-8669-67d290c6fb26}</destination>
<destination>{c22d4e22-49ba-4f40-b2ef-ddc8dd15ce81}</destination>
<destination>{56dbb96b-e49d-4a8b-a678-97662e9bd824}</destination>
<destination>{b067664e-d331-4b79-ad33-4c978d17920a}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{a95234b9-f8dd-4043-8669-67d290c6fb26}">
<property name="position">
<value>0</value>

View File

@@ -331,7 +331,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -340,7 +339,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -669,7 +667,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -686,7 +683,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -72,10 +72,10 @@
<value>1</value>
</property>
<property name="minimumDistance">
<value>2.20000005</value>
<value>2.79999995</value>
</property>
<property name="maximumDistance">
<value>90</value>
<value>75</value>
</property>
</object>
<object class="MarkerTrack" id="{25ff9287-1371-4687-989c-3d2f2a0ae13a}" />
@@ -274,11 +274,20 @@
</object>
<object class="MixerBusFader" id="{c0ec98cf-5478-4926-8cbe-53725111fa06}" />
<object class="SpatialiserEffect" id="{276f6560-d104-46af-992b-a859d173ad8d}">
<property name="distanceRolloffType">
<value>1</value>
</property>
<property name="maximumDistance">
<value>50</value>
</property>
<property name="overrideRange">
<value>true</value>
</property>
<property name="extentMode">
<value>1</value>
</property>
<property name="soundSize">
<value>300</value>
<value>160</value>
</property>
</object>
<object class="MultibandEqEffect" id="{c2bf834d-7ae6-4de6-8ef9-5bf74b851a31}">

View File

@@ -27,6 +27,7 @@
</relationship>
<relationship name="groupTracks">
<destination>{c95564b4-a39a-4a16-b885-aa57a772ad22}</destination>
<destination>{0ccc14e4-ad3d-4a5f-9727-738e2f18c0c0}</destination>
</relationship>
<relationship name="timeline">
<destination>{0cb7e74b-8ed0-4cb4-a9ed-b9b2a1bd7978}</destination>
@@ -76,9 +77,18 @@
<destination>{9193ab1d-4c7a-407a-aebf-b519fd484419}</destination>
</relationship>
</object>
<object class="GroupTrack" id="{0ccc14e4-ad3d-4a5f-9727-738e2f18c0c0}">
<relationship name="modules">
<destination>{bd2db3f6-ca0f-4545-870c-b614aac53450}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{5d345ce6-fa53-4d10-93ad-edb601b4fa9a}</destination>
</relationship>
</object>
<object class="Timeline" id="{0cb7e74b-8ed0-4cb4-a9ed-b9b2a1bd7978}">
<relationship name="modules">
<destination>{b428b247-bab5-465f-bbe1-f9093660fd05}</destination>
<destination>{bd2db3f6-ca0f-4545-870c-b614aac53450}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{c28d57a6-c63b-486f-88a3-35590b9dbc71}">
@@ -123,7 +133,7 @@
</object>
<object class="EventMixerGroup" id="{9193ab1d-4c7a-407a-aebf-b519fd484419}">
<property name="volume">
<value>10</value>
<value>-80</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -138,6 +148,40 @@
<destination>{c28d57a6-c63b-486f-88a3-35590b9dbc71}</destination>
</relationship>
</object>
<object class="SingleSound" id="{bd2db3f6-ca0f-4545-870c-b614aac53450}">
<property name="length">
<value>0.13800000000000001</value>
</property>
<property name="timelockedOffset">
<value>0.0099999999999999985</value>
</property>
<property name="pitch">
<value>-3</value>
</property>
<relationship name="fadeOutCurve">
<destination>{7504eb6d-e693-4046-a0ca-2d946d4ef786}</destination>
</relationship>
<relationship name="audioFile">
<destination>{4c145428-d753-49b4-82c4-233d8a066c20}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{5d345ce6-fa53-4d10-93ad-edb601b4fa9a}">
<property name="volume">
<value>8</value>
</property>
<property name="name">
<value>Audio 2</value>
</property>
<relationship name="effectChain">
<destination>{1270ec21-0826-4380-a827-b687b71bbc83}</destination>
</relationship>
<relationship name="panner">
<destination>{07326057-58ed-455c-be6a-dbd8ca3b4b0b}</destination>
</relationship>
<relationship name="output">
<destination>{c28d57a6-c63b-486f-88a3-35590b9dbc71}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{3889479a-2bd9-4db9-afbb-c3c8832cc76b}">
<relationship name="effects">
<destination>{3e908b9e-bdb2-4a9b-bd24-58207256fe32}</destination>
@@ -161,6 +205,20 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{fed57411-2563-4f35-80b1-18112f5146b6}" />
<object class="FadeCurve" id="{7504eb6d-e693-4046-a0ca-2d946d4ef786}">
<relationship name="startPoint">
<destination>{86e3820a-1119-41a1-928c-76fe179c06aa}</destination>
</relationship>
<relationship name="endPoint">
<destination>{bfc80b4b-94b7-4b4e-8e92-ec7efb9ebb93}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{1270ec21-0826-4380-a827-b687b71bbc83}">
<relationship name="effects">
<destination>{9930a33a-8f2d-48c8-ba63-d0dfc6860c2a}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{07326057-58ed-455c-be6a-dbd8ca3b4b0b}" />
<object class="MixerBusFader" id="{3e908b9e-bdb2-4a9b-bd24-58207256fe32}" />
<object class="PluginEffect" id="{a79a854b-e9d1-4d11-ad58-27c7fc2fb4ee}">
<relationship name="plugin">
@@ -201,6 +259,26 @@
<value>3.47419739</value>
</property>
</object>
<object class="AutomationPoint" id="{86e3820a-1119-41a1-928c-76fe179c06aa}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>-0.289506376</value>
</property>
</object>
<object class="AutomationPoint" id="{bfc80b4b-94b7-4b4e-8e92-ec7efb9ebb93}">
<property name="position">
<value>0.13800000000000001</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="MixerBusFader" id="{9930a33a-8f2d-48c8-ba63-d0dfc6860c2a}" />
<object class="Plugin" id="{40027809-4de0-405c-987e-9d34ef2660ca}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
@@ -248,7 +326,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -257,7 +334,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -586,7 +662,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -603,7 +678,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -255,7 +255,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -264,7 +263,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -344,7 +342,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{65553e1f-13a0-4c78-be72-9601d472bfd3}">
@@ -556,7 +554,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{05bddb73-47f6-4496-82a2-da38a0a982e2}">
@@ -593,7 +591,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -610,7 +607,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -0,0 +1,638 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="Event" id="{1cea6016-3eba-4a11-8009-3caf9e1653d3}">
<property name="name">
<value>BowGrab</value>
</property>
<property name="outputFormat">
<value>5</value>
</property>
<relationship name="folder">
<destination>{dde91308-d50f-4a55-aaba-77eab8d7dad8}</destination>
</relationship>
<relationship name="mixer">
<destination>{f6c94dc8-f22f-4c9b-addb-a40c396bce65}</destination>
</relationship>
<relationship name="masterTrack">
<destination>{80bb5cd2-a8ab-496e-bd6b-8f85c29b13b4}</destination>
</relationship>
<relationship name="mixerInput">
<destination>{95e10b8e-8353-4820-b4fc-500f71e60621}</destination>
</relationship>
<relationship name="automatableProperties">
<destination>{b690bfa7-f6be-46bd-8e7a-cc1d02638610}</destination>
</relationship>
<relationship name="markerTracks">
<destination>{078db051-a090-472c-9546-f73dae05a7a7}</destination>
</relationship>
<relationship name="groupTracks">
<destination>{e5298274-383b-4fda-b3fd-18501295d6e4}</destination>
</relationship>
<relationship name="timeline">
<destination>{134c744d-d577-4bf7-9f98-7adf8506c6d9}</destination>
</relationship>
<relationship name="banks">
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
</relationship>
</object>
<object class="EventMixer" id="{f6c94dc8-f22f-4c9b-addb-a40c396bce65}">
<relationship name="masterBus">
<destination>{fdcbb35a-c9d4-461c-ac0f-98fbb9e4f546}</destination>
</relationship>
</object>
<object class="MasterTrack" id="{80bb5cd2-a8ab-496e-bd6b-8f85c29b13b4}">
<relationship name="mixerGroup">
<destination>{fdcbb35a-c9d4-461c-ac0f-98fbb9e4f546}</destination>
</relationship>
</object>
<object class="MixerInput" id="{95e10b8e-8353-4820-b4fc-500f71e60621}">
<relationship name="effectChain">
<destination>{9a122e8c-05e7-491a-81fb-24e637baf02a}</destination>
</relationship>
<relationship name="panner">
<destination>{e27c6337-5e20-4437-ac5d-2522dc6c26eb}</destination>
</relationship>
<relationship name="output">
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{b690bfa7-f6be-46bd-8e7a-cc1d02638610}">
<property name="minimumDistance">
<value>2</value>
</property>
</object>
<object class="MarkerTrack" id="{078db051-a090-472c-9546-f73dae05a7a7}" />
<object class="GroupTrack" id="{e5298274-383b-4fda-b3fd-18501295d6e4}">
<relationship name="modules">
<destination>{74b187f2-f76b-42f0-9e06-a7c9d85889d5}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{fed0d178-9fae-457a-8e94-ae60b6c12ddb}</destination>
</relationship>
</object>
<object class="Timeline" id="{134c744d-d577-4bf7-9f98-7adf8506c6d9}">
<relationship name="modules">
<destination>{74b187f2-f76b-42f0-9e06-a7c9d85889d5}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{fdcbb35a-c9d4-461c-ac0f-98fbb9e4f546}">
<relationship name="effectChain">
<destination>{c9555af1-bff8-496f-8e5c-2ad72423bcba}</destination>
</relationship>
<relationship name="panner">
<destination>{7c3d7804-1cec-4b40-a93a-15bed05547ee}</destination>
</relationship>
<relationship name="mixer">
<destination>{f6c94dc8-f22f-4c9b-addb-a40c396bce65}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{9a122e8c-05e7-491a-81fb-24e637baf02a}">
<relationship name="effects">
<destination>{125dcb99-57e1-41ed-b42a-6312a546c65e}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{e27c6337-5e20-4437-ac5d-2522dc6c26eb}" />
<object class="MultiSound" id="{74b187f2-f76b-42f0-9e06-a7c9d85889d5}">
<property name="length">
<value>0.60999999999999999</value>
</property>
<property name="pitch">
<value>3</value>
</property>
<relationship name="modulators">
<destination>{0a5d1a84-deef-4d4f-8ec3-34ea495e7f7c}</destination>
</relationship>
<relationship name="fadeOutCurve">
<destination>{62507749-12a3-41cc-ad4f-ed11a302b1d0}</destination>
</relationship>
<relationship name="sounds">
<destination>{2b6a654f-36df-4afe-9ff9-eb29801ca9c9}</destination>
<destination>{e7a37bf0-b5c9-4a2e-9222-6cbb8ac74e59}</destination>
<destination>{b6b222f6-afa0-4668-ac2a-066c78cf14d8}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{fed0d178-9fae-457a-8e94-ae60b6c12ddb}">
<property name="name">
<value>Audio 1</value>
</property>
<relationship name="effectChain">
<destination>{c3ac7f4b-f094-44b0-957d-c629da69970a}</destination>
</relationship>
<relationship name="panner">
<destination>{5d316c98-c90a-40f9-b803-b62c2d7e259b}</destination>
</relationship>
<relationship name="output">
<destination>{fdcbb35a-c9d4-461c-ac0f-98fbb9e4f546}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{c9555af1-bff8-496f-8e5c-2ad72423bcba}">
<relationship name="effects">
<destination>{e92105da-f537-4c2b-abd9-975ddb23e8e2}</destination>
<destination>{b60ad382-e7f9-4911-b09b-07402d73ce2b}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{7c3d7804-1cec-4b40-a93a-15bed05547ee}" />
<object class="MixerBusFader" id="{125dcb99-57e1-41ed-b42a-6312a546c65e}" />
<object class="RandomizerModulator" id="{0a5d1a84-deef-4d4f-8ec3-34ea495e7f7c}">
<property name="nameOfPropertyBeingModulated">
<value>pitch</value>
</property>
<property name="amount">
<value>4</value>
</property>
</object>
<object class="FadeCurve" id="{62507749-12a3-41cc-ad4f-ed11a302b1d0}">
<relationship name="startPoint">
<destination>{a6f64ff1-aa5d-4ab8-9a7c-14b9d791612e}</destination>
</relationship>
<relationship name="endPoint">
<destination>{dd63eea0-a21f-459f-90fa-49357d4006e6}</destination>
</relationship>
</object>
<object class="SingleSound" id="{2b6a654f-36df-4afe-9ff9-eb29801ca9c9}">
<relationship name="audioFile">
<destination>{caeaf344-2411-40d5-a7de-b247f15184e7}</destination>
</relationship>
</object>
<object class="SingleSound" id="{e7a37bf0-b5c9-4a2e-9222-6cbb8ac74e59}">
<relationship name="audioFile">
<destination>{a0a31790-658e-46be-842c-29b85399f392}</destination>
</relationship>
</object>
<object class="SingleSound" id="{b6b222f6-afa0-4668-ac2a-066c78cf14d8}">
<relationship name="audioFile">
<destination>{9286ccea-5877-42fa-8bd4-46c310d0694c}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{c3ac7f4b-f094-44b0-957d-c629da69970a}">
<relationship name="effects">
<destination>{f1710079-c03e-4f90-9240-bedb14855061}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{5d316c98-c90a-40f9-b803-b62c2d7e259b}" />
<object class="MixerBusFader" id="{e92105da-f537-4c2b-abd9-975ddb23e8e2}" />
<object class="PluginEffect" id="{b60ad382-e7f9-4911-b09b-07402d73ce2b}">
<relationship name="plugin">
<destination>{47c5ce9f-141f-4dd8-8eb6-f45b37873ffe}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{a6f64ff1-aa5d-4ab8-9a7c-14b9d791612e}">
<property name="position">
<value>0.5</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>0.25471893</value>
</property>
</object>
<object class="AutomationPoint" id="{dd63eea0-a21f-459f-90fa-49357d4006e6}">
<property name="position">
<value>0.60999999999999999</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="MixerBusFader" id="{f1710079-c03e-4f90-9240-bedb14855061}" />
<object class="Plugin" id="{47c5ce9f-141f-4dd8-8eb6-f45b37873ffe}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
</property>
<relationship name="pluginParameters">
<destination>{37bca700-118d-4957-90a2-78f911913c70}</destination>
<destination>{074d86e8-d3b3-4dc5-93fd-9094548e2e22}</destination>
<destination>{34c8e1c6-f863-470d-bd54-c752dffb891b}</destination>
<destination>{ea3474ed-9cc0-4204-9df4-9326d04c1db2}</destination>
<destination>{d0ded493-8536-471a-bd69-71b46775b09a}</destination>
<destination>{cc3af36d-9ef8-4226-8478-4e97cd633037}</destination>
<destination>{950ca4a7-9de4-4f04-ae33-6fbc2c2a7d28}</destination>
<destination>{6afea030-418a-41b7-b91f-cf661deb4661}</destination>
<destination>{9bd2418d-ff93-4961-90f7-e047226e3123}</destination>
<destination>{0e186b66-b33b-4aa7-a8f1-85ca06ab183a}</destination>
<destination>{38606aeb-4003-4096-90ed-1c7cdd2588ed}</destination>
<destination>{6b257d3f-f579-464b-afa5-b907697cfd87}</destination>
<destination>{a9d151a5-9ea2-4197-8333-c03f889dee7d}</destination>
<destination>{20094490-43dc-42f6-82c3-8afbac148b44}</destination>
<destination>{3dfcdfcc-08fa-431d-9057-9c4648e5f145}</destination>
<destination>{f94a8a62-335a-4eb6-94c5-74dcf01c6d4e}</destination>
<destination>{9a9faa01-2290-4abf-b3a5-efd7be693e23}</destination>
<destination>{c1ed642f-a0fe-498d-946e-f1e4e4b1c15f}</destination>
<destination>{a85ef66a-4bff-499d-8f55-05702d2d8a68}</destination>
<destination>{54ea5237-4b20-484c-a984-903a0162f76e}</destination>
<destination>{4f64725a-f17c-4fa6-849f-9ab9101c83ea}</destination>
<destination>{025ef2a3-29d2-4df9-8cac-bfb86a0c0875}</destination>
<destination>{b93fef76-8919-48cf-aec3-675c37dfbc88}</destination>
<destination>{f4694d43-7796-4708-8898-70e9aa18312a}</destination>
<destination>{b39d29eb-1bd1-407c-8a6f-278a730342de}</destination>
<destination>{8df1879c-3e2c-454f-b81d-8c2f5e4b2593}</destination>
<destination>{1d5360ef-c1b6-49e3-b2e4-cec6aa34b8b5}</destination>
<destination>{58dd6994-1390-4c0e-b5fb-2c12362d8869}</destination>
<destination>{7ac93f41-9b8a-4095-a059-3c51cd104986}</destination>
<destination>{e2b95558-a921-4cb8-b2a3-c76e8ba0f62e}</destination>
<destination>{ca1a19f0-2788-458a-bd61-b8e4c19e7fcb}</destination>
<destination>{b14e406c-aa57-4dfb-9985-b6d89eeee17a}</destination>
<destination>{346c5adb-369f-417b-81d9-d23961765c08}</destination>
<destination>{1c31e7bf-5ec2-4cf8-b27c-31dff07033b3}</destination>
<destination>{11b516c5-5f4f-4aa3-892a-2ad4e400ed39}</destination>
<destination>{d35de55f-6b11-4013-a382-5c9f70a326bb}</destination>
</relationship>
</object>
<object class="DataPluginParameter" id="{37bca700-118d-4957-90a2-78f911913c70}">
<property name="name">
<value>SourcePos</value>
</property>
<property name="dataType">
<value>-2</value>
</property>
</object>
<object class="DataPluginParameter" id="{074d86e8-d3b3-4dc5-93fd-9094548e2e22}">
<property name="name">
<value>OverallGain</value>
</property>
<property name="dataType">
<value>-1</value>
</property>
</object>
<object class="IntPluginParameter" id="{34c8e1c6-f863-470d-bd54-c752dffb891b}">
<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="{ea3474ed-9cc0-4204-9df4-9326d04c1db2}">
<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="{d0ded493-8536-471a-bd69-71b46775b09a}">
<property name="name">
<value>ApplyDir</value>
</property>
<property name="value">
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
</property>
<property name="maximumValue">
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{cc3af36d-9ef8-4226-8478-4e97cd633037}">
<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="{950ca4a7-9de4-4f04-ae33-6fbc2c2a7d28}">
<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="{6afea030-418a-41b7-b91f-cf661deb4661}">
<property name="name">
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="BoolPluginParameter" id="{9bd2418d-ff93-4961-90f7-e047226e3123}">
<property name="name">
<value>ApplyPath</value>
</property>
<property name="value">
<value>true</value>
</property>
</object>
<object class="IntPluginParameter" id="{0e186b66-b33b-4aa7-a8f1-85ca06ab183a}">
<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="{38606aeb-4003-4096-90ed-1c7cdd2588ed}">
<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="{6b257d3f-f579-464b-afa5-b907697cfd87}">
<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="{a9d151a5-9ea2-4197-8333-c03f889dee7d}">
<property name="name">
<value>DAMinDist</value>
</property>
<property name="value">
<value>2</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{20094490-43dc-42f6-82c3-8afbac148b44}">
<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="{3dfcdfcc-08fa-431d-9057-9c4648e5f145}">
<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="{f94a8a62-335a-4eb6-94c5-74dcf01c6d4e}">
<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="{9a9faa01-2290-4abf-b3a5-efd7be693e23}">
<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="{c1ed642f-a0fe-498d-946e-f1e4e4b1c15f}">
<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="{a85ef66a-4bff-499d-8f55-05702d2d8a68}">
<property name="name">
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0.754999995</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{54ea5237-4b20-484c-a984-903a0162f76e}">
<property name="name">
<value>DipolePower</value>
</property>
<property name="value">
<value>1.29999995</value>
</property>
<property name="curve">
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{4f64725a-f17c-4fa6-849f-9ab9101c83ea}">
<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="{025ef2a3-29d2-4df9-8cac-bfb86a0c0875}">
<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="{b93fef76-8919-48cf-aec3-675c37dfbc88}">
<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="{f4694d43-7796-4708-8898-70e9aa18312a}">
<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="{b39d29eb-1bd1-407c-8a6f-278a730342de}">
<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="{8df1879c-3e2c-454f-b81d-8c2f5e4b2593}">
<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="{1d5360ef-c1b6-49e3-b2e4-cec6aa34b8b5}">
<property name="name">
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{58dd6994-1390-4c0e-b5fb-2c12362d8869}">
<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="{7ac93f41-9b8a-4095-a059-3c51cd104986}">
<property name="name">
<value>PathBinaural</value>
</property>
<property name="value">
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{e2b95558-a921-4cb8-b2a3-c76e8ba0f62e}">
<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="{ca1a19f0-2788-458a-bd61-b8e4c19e7fcb}">
<property name="name">
<value>SimOutputs</value>
</property>
<property name="dataType">
<value>0</value>
</property>
</object>
<object class="BoolPluginParameter" id="{b14e406c-aa57-4dfb-9985-b6d89eeee17a}">
<property name="name">
<value>DirectBinaural</value>
</property>
<property name="value">
<value>true</value>
</property>
</object>
<object class="DataPluginParameter" id="{346c5adb-369f-417b-81d9-d23961765c08}">
<property name="name">
<value>DistRange</value>
</property>
<property name="dataType">
<value>-6</value>
</property>
</object>
<object class="IntPluginParameter" id="{1c31e7bf-5ec2-4cf8-b27c-31dff07033b3}">
<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="{11b516c5-5f4f-4aa3-892a-2ad4e400ed39}">
<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="{d35de55f-6b11-4013-a382-5c9f70a326bb}">
<property name="name">
<value>PathNormEQ</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
</objects>

View File

@@ -301,7 +301,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -310,7 +309,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -390,7 +388,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{d5568e88-591f-480c-a76d-36b96afb3708}">
@@ -602,7 +600,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{e6fd9a85-149b-438c-a97a-779f0a80adac}">
@@ -639,7 +637,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -656,7 +653,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -309,7 +309,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -318,7 +317,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -406,7 +404,7 @@
<value>ApplyPath</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="IntPluginParameter" id="{4da24a66-fe98-4019-aea6-059fe29b59f6}">
@@ -629,7 +627,7 @@
<value>PathBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{4daf1525-60c7-47cc-a027-36e07f031834}">
@@ -647,7 +645,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -664,7 +661,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -299,7 +299,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -308,7 +307,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -388,7 +386,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{e7c6ce79-a7c9-41bf-b4cd-5b49bb26a12d}">
@@ -600,7 +598,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{61b145d9-684d-4b7c-bda0-42af70712e96}">
@@ -637,7 +635,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -654,7 +651,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -283,7 +283,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -292,7 +291,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -372,7 +370,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{3adaa7b1-7a11-4e64-ae31-b28afd80f4eb}">
@@ -584,7 +582,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{6cebbd1a-1462-48a7-9367-9002e06b0f30}">
@@ -621,7 +619,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -638,7 +635,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -328,7 +328,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -337,7 +336,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -666,7 +664,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -683,7 +680,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -31,10 +31,14 @@
<destination>{b842c7fd-0e05-4049-9e84-00fe3a5b7dd1}</destination>
<destination>{66e5a38d-00ec-494e-a247-b65494e3a317}</destination>
<destination>{22752f6d-d8de-4884-82fb-e0753f73e5e6}</destination>
<destination>{6e29845a-bd3f-499f-be8b-d1d0ca6a2dd8}</destination>
</relationship>
<relationship name="timeline">
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
</relationship>
<relationship name="parameters">
<destination>{8aceca0c-4eca-4530-a5eb-978a56acc469}</destination>
</relationship>
<relationship name="banks">
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
</relationship>
@@ -45,6 +49,10 @@
</relationship>
</object>
<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">
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
</relationship>
@@ -61,17 +69,14 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{46d55cc2-2c4e-4708-9297-e9a75e5b94b5}">
<property name="isPersistent">
<value>true</value>
</property>
<property name="dopplerEnabled">
<value>true</value>
</property>
<property name="dopplerScale">
<value>0</value>
</property>
<property name="minimumDistance">
<value>5</value>
<property name="maximumDistance">
<value>15</value>
</property>
</object>
<object class="MarkerTrack" id="{2981f918-8c6d-4dc1-9511-505b40dbc05d}" />
@@ -111,19 +116,45 @@
</relationship>
</object>
<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">
<destination>{c519baf7-ecf1-4f7e-bf06-55301ad4a7b2}</destination>
</relationship>
</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}">
<relationship name="modules">
<destination>{50de92b0-a8b9-44ba-a8da-2dbecab07cbd}</destination>
<destination>{0802a0d3-a8ae-4fed-bffe-476b36e6bde0}</destination>
<destination>{81dc7c2f-311d-4305-b0ef-ccac59fd1dca}</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>
</object>
<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">
<destination>{fb2eee16-23de-440f-9363-b6208a2732e8}</destination>
</relationship>
@@ -134,6 +165,16 @@
<destination>{8a481067-2c45-444c-86ae-8f9f17b95b92}</destination>
</relationship>
</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}">
<relationship name="effects">
<destination>{53d88e58-d862-40ff-976d-892f927b0f30}</destination>
@@ -282,6 +323,34 @@
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
</relationship>
</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}">
<property name="name">
<value>Audio 5</value>
@@ -296,11 +365,44 @@
<destination>{ffb8b949-0094-4a58-abe5-359891622f8c}</destination>
</relationship>
</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}">
<relationship name="effects">
<destination>{acaebb26-bfea-4c16-a406-d3bdb161a680}</destination>
<destination>{34075740-b734-477b-bb4c-4b2d0c0dbf70}</destination>
<destination>{1eb9ad6f-5ad0-45da-9ff8-6b0a6895c63e}</destination>
<destination>{acaebb26-bfea-4c16-a406-d3bdb161a680}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{990fdcfd-199d-4f40-8e0b-73fa7dbc76b9}" />
@@ -385,9 +487,22 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{0a30dcf3-87b1-4142-b186-107252885dc8}" />
<object class="PluginEffect" id="{acaebb26-bfea-4c16-a406-d3bdb161a680}">
<relationship name="plugin">
<destination>{18dff622-970d-4604-8e31-fde67c7532e7}</destination>
<object class="MixerBusEffectChain" id="{8112d48b-4f6d-4788-98e4-5d80991b2f4b}">
<relationship name="effects">
<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>
</object>
<object class="MixerBusFader" id="{34075740-b734-477b-bb4c-4b2d0c0dbf70}" />
@@ -402,6 +517,11 @@
<destination>{74f8ce6a-9dd0-4ae8-8236-dedea6491c3e}</destination>
</relationship>
</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}">
<relationship name="parameter">
<destination>{0062ed52-d2d1-4741-a3da-f721d4923a9b}</destination>
@@ -409,6 +529,7 @@
<relationship name="automationPoints">
<destination>{2a8d079f-c2d3-4f8f-a105-0aae6d48a172}</destination>
<destination>{60ddc3ea-00f7-43ef-ad7b-91a9642e7623}</destination>
<destination>{6f3e41aa-c907-4bf3-9aa3-f7eae96b89ab}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{b3433338-9d3d-4e8c-926d-0a0cc3baeff4}">
@@ -492,6 +613,55 @@
<object class="MixerBusFader" id="{a751c897-4a7a-4940-b69f-1e805bfab04c}" />
<object class="MixerBusFader" id="{0e14780e-48f9-46a1-98b0-b938e5b6766f}" />
<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}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
@@ -535,14 +705,6 @@
<destination>{0264abb5-8685-4535-9823-c378f49ef3d6}</destination>
</relationship>
</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}">
<property name="position">
<value>14.050000000000001</value>
@@ -562,11 +724,30 @@
<value>-2</value>
</property>
</object>
<object class="AutomationPoint" id="{6f3e41aa-c907-4bf3-9aa3-f7eae96b89ab}">
<property name="position">
<value>15.265538213132398</value>
</property>
<property name="value">
<value>0</value>
</property>
</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}">
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -575,7 +756,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -585,7 +765,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -613,7 +793,7 @@
<value>ApplyDir</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -655,7 +835,7 @@
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="BoolPluginParameter" id="{8502a8ec-625f-48b0-bea0-14d095090343}">
@@ -696,7 +876,7 @@
<value>DAType</value>
</property>
<property name="value">
<value>2</value>
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -710,7 +890,7 @@
<value>DAMinDist</value>
</property>
<property name="value">
<value>5</value>
<value>1</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -721,7 +901,7 @@
<value>DAMaxDist</value>
</property>
<property name="value">
<value>20</value>
<value>15</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -867,7 +1047,7 @@
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
<value>true</value>
</property>
</object>
<object class="FloatPluginParameter" id="{4ecbeafc-abde-43d7-a135-e4d404c4aa1c}">
@@ -904,7 +1084,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -921,7 +1100,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>
@@ -962,29 +1140,6 @@
<value>false</value>
</property>
</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}">
<property name="position">
<value>1</value>
@@ -998,7 +1153,7 @@
<value>0.5</value>
</property>
<property name="value">
<value>1028.48486</value>
<value>12000</value>
</property>
<property name="curveShape">
<value>-0.0945791602</value>
@@ -1006,18 +1161,26 @@
</object>
<object class="AutomationPoint" id="{c73e5728-c7e8-4f09-a6a0-dfc952305216}">
<property name="position">
<value>0.96999999999999997</value>
<value>0.95000000000000007</value>
</property>
<property name="value">
<value>130</value>
<value>4000</value>
</property>
</object>
<object class="AutomationPoint" id="{7d820117-faf2-4be8-883b-b2e15fb744b1}">
<property name="position">
<value>0.94694561637357466</value>
<value>0.85000000000000009</value>
</property>
<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>
</object>
</objects>

View File

@@ -214,7 +214,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -223,7 +222,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -552,7 +550,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -569,7 +566,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -23,10 +23,11 @@
<destination>{1fb9b144-3aba-4f27-adac-3209e96a12a3}</destination>
</relationship>
<relationship name="markerTracks">
<destination>{6cebd0c5-e32b-4fd2-807b-9d33a519231c}</destination>
<destination>{2e1eae4e-a6ae-455b-be3d-b851a257e1c6}</destination>
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
</relationship>
<relationship name="groupTracks">
<destination>{08383708-a4ec-4ed4-b239-3bc763c83cd0}</destination>
<destination>{01fb89ff-00b4-412b-a565-42dfb0192e83}</destination>
</relationship>
<relationship name="timeline">
@@ -34,6 +35,7 @@
</relationship>
<relationship name="parameters">
<destination>{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}</destination>
<destination>{0de6a38c-9ba8-4198-a322-28ba6ce5660f}</destination>
</relationship>
<relationship name="banks">
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
@@ -47,10 +49,15 @@
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
<relationship name="automationTracks">
<destination>{545591e5-e760-4a3b-8842-a47576b46777}</destination>
<destination>{909b220a-7be9-4e8d-a54d-9c5ad312f7f0}</destination>
</relationship>
<relationship name="modules">
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</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 name="mixerGroup">
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
@@ -72,25 +79,24 @@
<value>2</value>
</property>
<property name="maximumDistance">
<value>10</value>
<value>9</value>
</property>
</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="GroupTrack" id="{08383708-a4ec-4ed4-b239-3bc763c83cd0}">
<relationship name="modules">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}</destination>
</relationship>
</object>
<object class="GroupTrack" id="{01fb89ff-00b4-412b-a565-42dfb0192e83}">
<relationship name="automationTracks">
<destination>{17ab4710-c1ce-4a4d-84fa-a6b502d89540}</destination>
</relationship>
<relationship name="modules">
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
<destination>{98cd4dab-daa1-4146-a436-142a40961319}</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 name="mixerGroup">
<destination>{eddef13d-d55e-4eb2-94c9-4584ca5065b1}</destination>
@@ -99,10 +105,14 @@
<object class="Timeline" id="{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}">
<relationship name="modules">
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
<destination>{98cd4dab-daa1-4146-a436-142a40961319}</destination>
</relationship>
<relationship name="markers">
<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>
</object>
<object class="ParameterProxy" id="{05e1598e-7e1e-492c-8e9b-6a8b9e36d6b6}">
@@ -110,10 +120,18 @@
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
</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}">
<property name="volume">
<value>-3.5</value>
</property>
<relationship name="automators">
<destination>{c72b4e67-fdbe-4e85-b957-980bbabe02d7}</destination>
</relationship>
<relationship name="effectChain">
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
</relationship>
@@ -129,6 +147,11 @@
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
</relationship>
</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}">
<property name="length">
<value>0</value>
@@ -142,46 +165,41 @@
<value>0</value>
</property>
</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}">
<relationship name="effects">
<destination>{8334671c-21ec-4b08-a65f-03e78fa4f8f7}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
<object class="TransitionSourceSound" id="{a3dd34ab-5519-4684-89b1-90ed93b19fc0}">
<property name="length">
<value>0.16</value>
</property>
<relationship name="fadeOutCurve">
<destination>{137e4029-8d0d-4168-892b-32591518556c}</destination>
</relationship>
</object>
<object class="TransitionDestinationSound" id="{82c380ac-3a25-4e9b-bc81-6dc156330c85}">
<property name="start">
<value>0.040000000000000008</value>
</property>
<property name="length">
<value>0.15999999999999998</value>
</property>
<relationship name="fadeInCurve">
<destination>{f078fc0d-b883-4d15-aaaa-50c2658826b8}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}">
<property name="volume">
<value>-18.5</value>
</property>
<property name="name">
<value>Audio 1</value>
</property>
<relationship name="effectChain">
<destination>{aff0a84f-2382-4445-ab2d-ff9fa115a0be}</destination>
</relationship>
<relationship name="panner">
<destination>{ffea0a28-2773-40c5-870b-a8ca2347662b}</destination>
</relationship>
<relationship name="output">
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
<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}">
@@ -207,22 +225,43 @@
<property name="length">
<value>30</value>
</property>
<relationship name="automators">
<destination>{d218aa5f-6a05-402e-9d4b-a54f8520d3f7}</destination>
</relationship>
<relationship name="audioFile">
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
</relationship>
</object>
<object class="SingleSound" id="{98cd4dab-daa1-4146-a436-142a40961319}">
<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>31</value>
<value>1.8</value>
</property>
<property name="length">
<value>26.499124999999999</value>
<value>0</value>
</property>
<property name="timelockedOffset">
<value>14</value>
</object>
<object class="TransitionSourceSound" id="{c28c9fba-f378-4451-8119-5328c514a573}">
<property name="length">
<value>0</value>
</property>
<relationship name="audioFile">
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
</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}">
@@ -259,8 +298,105 @@
<destination>{45e5e68d-9039-4056-927d-69e6bfcf1caa}</destination>
</relationship>
</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}">
<relationship name="effects">
<destination>{50c221a0-d2b8-465f-9565-c010d17b5606}</destination>
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
<destination>{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}</destination>
<destination>{38a8dcfd-4ef5-4d51-bb99-998928550eb6}</destination>
@@ -268,34 +404,6 @@
</object>
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
<object class="MixerBusFader" id="{8334671c-21ec-4b08-a65f-03e78fa4f8f7}" />
<object class="TransitionSourceFadeOutCurve" id="{137e4029-8d0d-4168-892b-32591518556c}">
<relationship name="startPoint">
<destination>{9c5a515b-35dd-4601-89ac-9e74c5694f05}</destination>
</relationship>
<relationship name="endPoint">
<destination>{7b0015c3-7fcf-43bc-9586-7cef44d552cb}</destination>
</relationship>
<relationship name="relatedModule">
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
</relationship>
</object>
<object class="TransitionDestinationFadeInCurve" id="{f078fc0d-b883-4d15-aaaa-50c2658826b8}">
<relationship name="startPoint">
<destination>{00cd5384-21a8-452e-ab9f-b19092091f80}</destination>
</relationship>
<relationship name="endPoint">
<destination>{9e261d01-9705-444c-bc81-f44c9e53c36a}</destination>
</relationship>
<relationship name="relatedModule">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{aff0a84f-2382-4445-ab2d-ff9fa115a0be}">
<relationship name="effects">
<destination>{acbfc70b-5c7d-4114-9118-e03998f3e944}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{ffea0a28-2773-40c5-870b-a8ca2347662b}" />
<object class="TransitionSourceFadeOutCurve" id="{9d3a1c27-6225-4881-99bc-b38efb6e1cd7}">
<relationship name="startPoint">
<destination>{0d032252-22a1-4e42-8761-5c2dd3ea776f}</destination>
@@ -312,6 +420,32 @@
<destination>{ba64e590-1007-4870-a767-69e6f5344408}</destination>
</relationship>
</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}">
<relationship name="effects">
<destination>{266bd1ca-73b1-4a8f-9a5b-9e085151a1de}</destination>
@@ -323,14 +457,79 @@
<value>0.20000000000000001</value>
</property>
<relationship name="modules">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
</relationship>
</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="MultibandEqEffect" id="{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}">
<property name="frequencyA">
@@ -348,45 +547,6 @@
<destination>{676d5667-e7ad-4c84-bb48-8a8eb04e02d8}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{9c5a515b-35dd-4601-89ac-9e74c5694f05}">
<property name="position">
<value>0.040000000000000008</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>0.0865036622</value>
</property>
</object>
<object class="AutomationPoint" id="{7b0015c3-7fcf-43bc-9586-7cef44d552cb}">
<property name="position">
<value>0.16</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="AutomationPoint" id="{00cd5384-21a8-452e-ab9f-b19092091f80}">
<property name="position">
<value>0.040000000000000008</value>
</property>
<property name="value">
<value>0</value>
</property>
<property name="curveShape">
<value>-0.16711843</value>
</property>
</object>
<object class="AutomationPoint" id="{9e261d01-9705-444c-bc81-f44c9e53c36a}">
<property name="position">
<value>0.16</value>
</property>
<property name="value">
<value>1</value>
</property>
</object>
<object class="MixerBusFader" id="{acbfc70b-5c7d-4114-9118-e03998f3e944}" />
<object class="AutomationPoint" id="{0d032252-22a1-4e42-8761-5c2dd3ea776f}">
<property name="position">
<value>0.040000000000000008</value>
@@ -425,7 +585,114 @@
<value>1</value>
</property>
</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="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}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
@@ -477,6 +744,70 @@
<destination>{ec1e3877-b606-4f4a-9888-12174126f814}</destination>
</relationship>
</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}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
@@ -508,7 +839,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>1</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -619,7 +950,7 @@
<value>DAType</value>
</property>
<property name="value">
<value>0</value>
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -644,7 +975,7 @@
<value>DAMaxDist</value>
</property>
<property name="value">
<value>10</value>
<value>9</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -699,7 +1030,7 @@
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0</value>
<value>0.0350000001</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
@@ -888,7 +1219,7 @@
<value>0.01</value>
</property>
<property name="value">
<value>5000</value>
<value>11000</value>
</property>
</object>
<object class="AutomationPoint" id="{49ca9360-fee1-4873-8bc4-b4c6b24e312e}">
@@ -896,7 +1227,7 @@
<value>0.20000000000000001</value>
</property>
<property name="value">
<value>1100</value>
<value>11000</value>
</property>
<property name="curveShape">
<value>-0.0511879399</value>
@@ -907,7 +1238,7 @@
<value>0.64000000000000001</value>
</property>
<property name="value">
<value>35</value>
<value>11000</value>
</property>
</object>
</objects>

View File

@@ -53,7 +53,7 @@
<destination>{eccd3ae9-997e-4343-b26e-01f0c8902870}</destination>
</relationship>
<relationship name="output">
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
<destination>{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">

View File

@@ -53,7 +53,7 @@
<destination>{192db0a1-fb33-43b0-ad10-2bc0789d00f1}</destination>
</relationship>
<relationship name="output">
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
<destination>{5fd54d8a-2743-4d9b-870d-5bb3ab24a5b3}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{3efb2dc8-fbcb-433e-abb0-523ec7203651}" />
@@ -151,7 +151,7 @@
<object class="MixerBusFader" id="{390d5c76-aaf0-4792-b5c6-003f1a3a0925}" />
<object class="AutomationPoint" id="{2e2369aa-56fb-49c1-a422-5cc6606701b3}">
<property name="position">
<value>5.4000000000000004</value>
<value>5.4000000000000261</value>
</property>
<property name="value">
<value>1</value>
@@ -162,7 +162,7 @@
</object>
<object class="AutomationPoint" id="{a1c5436f-04dc-417c-bdd8-9e5b730a53d3}">
<property name="position">
<value>7.4000000000000004</value>
<value>7.3999999999999808</value>
</property>
<property name="value">
<value>0</value>

Some files were not shown because too many files have changed in this diff Show More