fixes, portal sound changed, faders

This commit is contained in:
Timur Nizamov
2025-12-08 00:06:28 +02:00
parent f414e10d94
commit 647d247c81
81 changed files with 963 additions and 885 deletions
@@ -21,6 +21,9 @@ public class CarDrivingRoutine : NetworkBehaviour
private float targetSpeed;
private float targetRotationSpeed;
private bool stopSoundPlayed = false;
private float stopThreshold = 0.05f; // consider speed "0" when below this
[Header("Tires")]
public List<GameObject> FrontTires;
public List<GameObject> BackTires;
@@ -79,6 +82,16 @@ public class CarDrivingRoutine : NetworkBehaviour
// Proceed to the next waypoint
_waypoint = _waypoint.Next;
}
if (StraightSpeed <= stopThreshold && !stopSoundPlayed)
{
stopSoundPlayed = true;
// Play the sound normally from your audio controller
//AudioController.SetRPM(475);
AudioController.PlayStopSound();
}
}
private void rollTires()
@@ -114,7 +127,7 @@ public class CarDrivingRoutine : NetworkBehaviour
//_stopSound.Play();
AudioController.SetRPM(475);
AudioController.PlayStopSound();
//AudioController.PlayStopSound();
}
@@ -126,6 +139,7 @@ public class CarDrivingRoutine : NetworkBehaviour
//_tireSound.Play();
AudioController.SetRPM(1450);
stopSoundPlayed = false;
}
@@ -150,5 +164,12 @@ public class CarDrivingRoutine : NetworkBehaviour
// Ensure final values are set
StraightSpeed = targetStraightSpeed;
rotationSpeed = targetRotationSpeed;
// If we just came to a full stop, mark for sound playback
if (StraightSpeed == 0)
{
stopSoundPlayed = false; // allow stop sound to fire
}
}
}
@@ -44,11 +44,8 @@ public class CarAudioController : MonoBehaviour
public void PlayStopSound()
{
carMovementInstance.getParameterByName("RPM", out float currentRPM);
if (currentRPM == 475)
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BoltCarStopSound, gameObject);
}
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BoltCarStopSound, gameObject);
}
}
@@ -12,6 +12,8 @@ GameObject:
- component: {fileID: 3622985744187477872}
- component: {fileID: 4889582830418939434}
- component: {fileID: 4334268454398699518}
- component: {fileID: 1040399542938643003}
- component: {fileID: 7898671522480671537}
m_Layer: 5
m_Name: LetterButton
m_TagString: Untagged
@@ -122,6 +124,59 @@ MonoBehaviour:
m_OnClick:
m_PersistentCalls:
m_Calls: []
--- !u!114 &1040399542938643003
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1943907191875735250}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d0b148fe25e99eb48b9724523833bab1, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Delegates:
- eventID: 0
callback:
m_PersistentCalls:
m_Calls:
- m_Target: {fileID: 7898671522480671537}
m_TargetAssemblyTypeName: ButtonHoverSound, Assembly-CSharp
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
m_IntArgument: 0
m_FloatArgument: 0
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
- m_Target: {fileID: 7898671522480671537}
m_TargetAssemblyTypeName: ButtonHoverSound, Assembly-CSharp
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
m_IntArgument: 0
m_FloatArgument: 0
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
--- !u!114 &7898671522480671537
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1943907191875735250}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cb2f1526149f8b44cad00bbed8424a37, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &7747026983332875138
GameObject:
m_ObjectHideFlags: 0
@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.EventSystems;
using FMODUnity;
public class ButtonHoverSound : MonoBehaviour, ISelectHandler, IDeselectHandler
{
public void OnSelect(BaseEventData eventData)
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.LetterHover, gameObject);
}
public void OnDeselect(BaseEventData eventData)
{
// Nothing needed here, unless you want a deselect effect
}
}
@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 6bdaa08e302fd9a4ab0f386f25762231
guid: cb2f1526149f8b44cad00bbed8424a37
MonoImporter:
externalObjects: {}
serializedVersion: 2
@@ -4152,8 +4152,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 9130699439852735294}
m_TargetAssemblyTypeName: FloorButtonVisualizer, Assembly-CSharp
m_MethodName: Activate
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -4168,8 +4168,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 9130699439852735294}
m_TargetAssemblyTypeName: FloorButtonVisualizer, Assembly-CSharp
m_MethodName: Deactivate
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -4552,8 +4552,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 2993125651756248496}
m_TargetAssemblyTypeName: FloorButtonVisualizer, Assembly-CSharp
m_MethodName: Activate
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -4568,8 +4568,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 2993125651756248496}
m_TargetAssemblyTypeName: FloorButtonVisualizer, Assembly-CSharp
m_MethodName: Deactivate
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -7256,7 +7256,6 @@ GameObject:
- component: {fileID: 1677224634519878501}
- component: {fileID: 4903940503297061428}
- component: {fileID: 556640037899741409}
- component: {fileID: 5626229604264113817}
m_Layer: 0
m_Name: Locomotion Providers
m_TagString: Untagged
@@ -7449,18 +7448,6 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 027065c8bd8579b4db62c9b5da6bafb6, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &5626229604264113817
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7615682635912035768}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 6bdaa08e302fd9a4ab0f386f25762231, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &7768604360596598954
GameObject:
m_ObjectHideFlags: 0
@@ -8921,8 +8908,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 6868433985520195351}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateDefault
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -8937,8 +8924,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 6868433985520195351}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateSelected
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -9255,8 +9242,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 1105759556239984562}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateSelected
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -9271,8 +9258,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 1105759556239984562}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateDefault
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -9986,7 +9973,7 @@ PrefabInstance:
- target: {fileID: 2420913116824796466, guid: f2ade1e8dce12be43ab14956a6244406,
type: 3}
propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
value: 2
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3841795681097067811, guid: f2ade1e8dce12be43ab14956a6244406,
type: 3}
@@ -10220,8 +10207,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 2839451055893527412}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateDefault
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -10229,15 +10216,15 @@ MonoBehaviour:
m_FloatArgument: 0
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
m_CallState: 1
- eventID: 0
callback:
m_PersistentCalls:
m_Calls:
- m_Target: {fileID: 2839451055893527412}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateSelected
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -10245,7 +10232,7 @@ MonoBehaviour:
m_FloatArgument: 0
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
m_CallState: 1
--- !u!1001 &7842999936337970732
PrefabInstance:
m_ObjectHideFlags: 0
@@ -10539,8 +10526,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 2869102958742088796}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateSelected
m_Mode: 1
m_MethodName: OnSelect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -10555,8 +10542,8 @@ MonoBehaviour:
m_Calls:
- m_Target: {fileID: 2869102958742088796}
m_TargetAssemblyTypeName: MenuTeleportButton, Assembly-CSharp
m_MethodName: SetStateDefault
m_Mode: 1
m_MethodName: OnDeselect
m_Mode: 0
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
@@ -59,7 +59,7 @@ public class AudioSliderDragHandler : MonoBehaviour, IBeginDragHandler, IDragHan
private void UpdateSlider(PointerEventData eventData)
{
Debug.Log("UpDating Slider");
//Debug.Log("UpDating Slider");
Vector2 localPoint;
RectTransformUtility.ScreenPointToLocalPointInRectangle(sliderBackground, eventData.position, eventData.pressEventCamera, out localPoint);
@@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class FloorButtonVisualizer : MonoBehaviour
@@ -10,10 +11,6 @@ public class FloorButtonVisualizer : MonoBehaviour
public bool ActiveState;
private Image buttonImage;
// --- Static tracking for selection change ---
private static FloorButtonVisualizer lastActiveButton = null;
private static bool initialized = false;
void Start()
{
buttonImage = gameObject.GetComponent<Image>();
@@ -23,15 +20,7 @@ public class FloorButtonVisualizer : MonoBehaviour
{
this.ActiveState = true;
buttonImage.sprite = ActiveSprite;
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
// --- Only play hover if selection actually changed ---
//if (initialized && lastActiveButton != this)
//{
// AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
//}
//lastActiveButton = this;
//initialized = true;
}
public void Deactivate()
@@ -39,4 +28,15 @@ public class FloorButtonVisualizer : MonoBehaviour
this.ActiveState = false;
buttonImage.sprite = InactiveSprite;
}
public void OnSelect(BaseEventData eventData) // joystick hover/select
{
buttonImage.sprite = ActiveSprite;
// Play FMOD sound here
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
}
public void OnDeselect(BaseEventData eventData) // joystick moves away
{
buttonImage.sprite = InactiveSprite;
}
}
@@ -26,9 +26,6 @@ public class MenuTeleportButton : MonoBehaviour
private EventInstance TeleportingSound;
FMOD.Studio.Bus SpecialBus; //FMOD bus variable
private static MenuTeleportButton lastSelectedButton = null;
private static bool initialized = false;
// External state: map must be held/visible
public static bool MapIsOpen = false;
private Menu menu;
@@ -70,20 +67,7 @@ public class MenuTeleportButton : MonoBehaviour
if (button != null && HoverSprite != null)
{
button.targetGraphic.GetComponent<Image>().sprite = HoverSprite;
// --- Only play hover sound if selection actually changed ---
//if (initialized && lastSelectedButton != this)
//{
// if (!Menu.IsMapOpen) return;
// if (!menu.MapTab.activeSelf) return; // ensures only map page buttons make sound
// AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
//}
if (!Menu.IsMapOpen) return;
if (!menu.MapTab.activeSelf) return; // ensures only map page buttons make sound
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
//lastSelectedButton = this;
//initialized = true;
//AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
}
}
@@ -99,8 +83,29 @@ public class MenuTeleportButton : MonoBehaviour
}
}
// Player-driven hover (joystick or controller)
public void OnSelect(BaseEventData eventData)
{
if (HoverSprite != null)
{
button.targetGraphic.GetComponent<Image>().sprite = HoverSprite;
}
// Play FMOD hover sound
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject);
}
public void OnDeselect(BaseEventData eventData)
{
if (NormalSprite != null)
{
button.targetGraphic.GetComponent<Image>().sprite = NormalSprite;
}
}
private void TeleportPlayer()
{
TutorialAudioListener.SuppressNextTeleportSound = true;
if (target == null || Player == null || teleportationProvider == null)
{
Debug.LogWarning("Teleportation failed: Target, Player, or TeleportationProvider is missing.");
@@ -127,6 +132,7 @@ public class MenuTeleportButton : MonoBehaviour
button.interactable = false;
button.interactable = true;
//muting teleportation when not needed
StartCoroutine(MuteBusForSeconds(2.0f));
TeleportingSound.start(); //playing 2d oneshot
@@ -48,7 +48,7 @@ private float GetInitialValueFromAudioManager()
{
// Constantly push slider value to the VCA
ApplyVolume(slider.CurrentValue);
Debug.Log("CurrentValue: " + slider.CurrentValue);
//Debug.Log("CurrentValue: " + slider.CurrentValue);
}
private void ApplyVolume(float value)
@@ -57,7 +57,7 @@ private float GetInitialValueFromAudioManager()
{
case VCATarget.Master:
AudioManager.Instance.SetMasterVCA(value);
Debug.LogError(value);
//Debug.LogError(value);
break;
case VCATarget.Ambiences:
@@ -1,33 +0,0 @@
using UnityEngine;
using UnityEngine.XR.Interaction.Toolkit;
using FMOD.Studio;
[RequireComponent(typeof(TeleportationProvider))]
public class TeleportationListen : MonoBehaviour
{
private TeleportationProvider teleportationProvider;
void Awake()
{
teleportationProvider = GetComponent<TeleportationProvider>();
}
void OnEnable()
{
// Subscribe to the event that fires when teleportation actually ends
teleportationProvider.endLocomotion += OnTeleportEnd;
}
void OnDisable()
{
teleportationProvider.endLocomotion -= OnTeleportEnd;
}
private void OnTeleportEnd(LocomotionSystem locomotionSystem)
{
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Steps, gameObject); //oneshot 3d event
Debug.Log("[TeleportationListen] Teleport sound played.");
}
}
@@ -24,6 +24,8 @@ public class TutorialAudioListener : MonoBehaviour
private Vector2 currentMoveVector;
public static bool SuppressNextTeleportSound = false;
private void Awake()
{
if (tutorialController == null)
@@ -118,11 +120,9 @@ public class TutorialAudioListener : MonoBehaviour
if (joystickMagnitude < joystickThreshold)
return; // Not moving enough to walk
// --- NEW: Slider influence (very light touch) ---
float sliderInfluence = 1f + (settingsSpeedMultiplier) * 0.25f;
float effectiveMagnitude = joystickMagnitude * sliderInfluence;
// --- NEW: Step cooldown ---
float dynamicCooldown = baseStepRate / Mathf.Max(effectiveMagnitude, 0.01f);
dynamicCooldown = Mathf.Clamp(dynamicCooldown, 0.33f, 0.65f);
@@ -145,6 +145,17 @@ public class TutorialAudioListener : MonoBehaviour
private void OnTeleportEnd(LocomotionSystem locomotionSystem)
{
// Optional teleport sound
// If magnitude above threshold = walking don't play the "teleportaion" step sound
if (currentMoveVector.magnitude > joystickThreshold)
return;
if (SuppressNextTeleportSound)
{
SuppressNextTeleportSound = false; // reset
return; // Skip playing landing step
}
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Steps, gameObject);
Debug.Log("[TeleportationListen] Teleport sound played.");
}
}
@@ -16,6 +16,8 @@ public class AlarmTrigger : MonoBehaviour
private EventInstance AlarmSound;
private EventInstance ServerButton;
private FirstPersonOcclusion occlusion;
private bool hasAlarm = false;
private void Awake()
@@ -26,6 +28,11 @@ public class AlarmTrigger : MonoBehaviour
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //make it 3d
occlusion = GetComponent<FirstPersonOcclusion>();
if (occlusion != null)
occlusion.InitialiseWithInstance(RoomHum);
occlusion.InitialiseWithInstance(AlarmSound);
}
void Start()
{
@@ -279,4 +279,4 @@ MonoBehaviour:
PlayerOcclusionWidening: 1
OcclusionLayer:
serializedVersion: 2
m_Bits: 268441600
m_Bits: 268442624
@@ -77,7 +77,7 @@ PrefabInstance:
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: b3d89325bbec0ea45971ae56eceb6a19,
type: 3}
insertIndex: -1
addedObject: {fileID: 6207385351492341968}
addedObject: {fileID: 4059759114160661754}
m_SourcePrefab: {fileID: 100100000, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
--- !u!1 &9183735049506620104 stripped
GameObject:
@@ -85,7 +85,7 @@ GameObject:
type: 3}
m_PrefabInstance: {fileID: 8336804541285056409}
m_PrefabAsset: {fileID: 0}
--- !u!114 &6207385351492341968
--- !u!114 &4059759114160661754
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
@@ -94,25 +94,18 @@ MonoBehaviour:
m_GameObject: {fileID: 9183735049506620104}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 9a6610d2e704f1648819acc8d7460285, type: 3}
m_Script: {fileID: 11500000, guid: 6c6205a218222364ca440c740b7a6b8f, type: 3}
m_Name:
m_EditorClassIdentifier:
CollisionTag:
EventReference:
SelectAudio:
Guid:
Data1: -1738058147
Data2: 1087328963
Data3: 1077989513
Data4: -494122575
Path: event:/Ambiences/Robots/Jackal
Event:
EventPlayTrigger: 1
EventStopTrigger: 0
AllowFadeout: 1
TriggerOnce: 0
Preload: 0
NonRigidbodyVelocity: 0
Params: []
OverrideAttenuation: 0
OverrideMinDistance: 1
OverrideMaxDistance: 8.8
SoundOcclusionWidening: 1
PlayerOcclusionWidening: 1
OcclusionLayer:
serializedVersion: 2
m_Bits: 268438528
@@ -5269,7 +5269,7 @@ GameObject:
- component: {fileID: 289104878}
- component: {fileID: 289104879}
- component: {fileID: 2994358071638057641}
- component: {fileID: 557218169713076685}
- component: {fileID: 697208528905587574}
m_Layer: 0
m_Name: Robot Variant
m_TagString: Untagged
@@ -5356,7 +5356,7 @@ MonoBehaviour:
startNavPoint: {fileID: 0}
rotationSpeed: 4
speed: 3
--- !u!114 &557218169713076685
--- !u!114 &697208528905587574
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
@@ -5365,28 +5365,21 @@ MonoBehaviour:
m_GameObject: {fileID: 5544299416681119408}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 9a6610d2e704f1648819acc8d7460285, type: 3}
m_Script: {fileID: 11500000, guid: 6c6205a218222364ca440c740b7a6b8f, type: 3}
m_Name:
m_EditorClassIdentifier:
CollisionTag:
EventReference:
SelectAudio:
Guid:
Data1: 1839140027
Data2: 1081087949
Data3: 1743957925
Data4: 803747245
Path: event:/Ambiences/Robots/Robotont
Event:
EventPlayTrigger: 1
EventStopTrigger: 0
AllowFadeout: 1
TriggerOnce: 0
Preload: 0
NonRigidbodyVelocity: 0
Params: []
OverrideAttenuation: 0
OverrideMinDistance: 1
OverrideMaxDistance: 5
SoundOcclusionWidening: 1
PlayerOcclusionWidening: 1
OcclusionLayer:
serializedVersion: 2
m_Bits: 268438528
--- !u!1 &5553018911760177217
GameObject:
m_ObjectHideFlags: 0
Binary file not shown.
@@ -61,7 +61,6 @@ public class AudioManager : MonoBehaviour
EVENT_CALLBACK beatCallback;
private static AudioManager _instance { get; set; }
public static event Action<string> OnNewBGMMarker;
// public static AudioManager instance;
private static EventInstance musicEventInstance;
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.
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{96a556a3-d086-40b0-aa07-991f8b6d0688}">
<object class="AudioFile" id="{27ace700-c69f-4c65-8276-8ca7742f551d}">
<property name="assetPath">
<value>Imported_Ambiences/Portal/122972__zimbot__portal_continuous_rumble.wav</value>
<value>New_Ambiences/PortalNonMagical.wav</value>
</property>
<property name="isStreaming">
<value>true</value>
</property>
<property name="frequencyInKHz">
<value>44.0999985</value>
<value>48</value>
</property>
<property name="channelCount">
<value>2</value>
</property>
<property name="length">
<value>14.10047619047619</value>
<value>14</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="AudioFile" id="{efb2df06-1b73-45d3-9632-20ba053fa427}">
<property name="assetPath">
<value>PortalNonMagical 1.wav</value>
</property>
<property name="isStreaming">
<value>true</value>
</property>
<property name="frequencyInKHz">
<value>48</value>
</property>
<property name="channelCount">
<value>1</value>
</property>
<property name="length">
<value>14</value>
</property>
<relationship name="masterAssetFolder">
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
</relationship>
</object>
</objects>
@@ -56,7 +56,14 @@
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{c3de3536-299f-4b66-aaab-f5b3dfcbb631}" />
<object class="EventAutomatableProperties" id="{c3de3536-299f-4b66-aaab-f5b3dfcbb631}">
<property name="minimumDistance">
<value>3.79999995</value>
</property>
<property name="maximumDistance">
<value>9.19999981</value>
</property>
</object>
<object class="MarkerTrack" id="{bd630abb-8429-40fa-89f1-431d030fb660}" />
<object class="GroupTrack" id="{b1de8414-8ab0-4946-a523-29fba8f3e8bd}">
<relationship name="modules">
@@ -72,6 +79,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{6925e198-c453-441b-9a20-594a915c7382}">
<property name="volume">
<value>2</value>
</property>
<relationship name="effectChain">
<destination>{499c1cf8-b684-43c2-a0e6-0ee70e8a74e5}</destination>
</relationship>
@@ -102,6 +112,9 @@
</relationship>
</object>
<object class="EventMixerGroup" id="{0370e71d-b4b3-4334-be42-8f71e7d8f891}">
<property name="volume">
<value>1.5</value>
</property>
<property name="name">
<value>Audio 1</value>
</property>
@@ -119,6 +132,7 @@
<relationship name="effects">
<destination>{6faea210-6180-4aa6-bd82-a62e6ce7f5f5}</destination>
<destination>{7afaf50a-8eb6-49a0-8fe3-b4fab99d4235}</destination>
<destination>{7762a34b-50a8-41bf-8f29-7d8c7e43bc35}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{9e99ce9b-b9a0-4f12-b982-f4de76284b8c}" />
@@ -154,6 +168,50 @@
<object class="MixerBusPanner" id="{852a5293-eb73-4089-b780-fb5ee78234db}" />
<object class="MixerBusFader" id="{6faea210-6180-4aa6-bd82-a62e6ce7f5f5}" />
<object class="SpatialiserEffect" id="{7afaf50a-8eb6-49a0-8fe3-b4fab99d4235}" />
<object class="MultibandEqEffect" id="{7762a34b-50a8-41bf-8f29-7d8c7e43bc35}">
<property name="filterTypeA">
<value>9</value>
</property>
<property name="filterTypeB">
<value>9</value>
</property>
<property name="filterTypeC">
<value>9</value>
</property>
<property name="filterTypeD">
<value>14</value>
</property>
<property name="frequencyA">
<value>10161.5098</value>
</property>
<property name="frequencyB">
<value>84.7956314</value>
</property>
<property name="frequencyC">
<value>473.39566</value>
</property>
<property name="frequencyD">
<value>28.8713398</value>
</property>
<property name="qualityA">
<value>0.528509259</value>
</property>
<property name="qualityB">
<value>1.20000005</value>
</property>
<property name="qualityC">
<value>1.55000007</value>
</property>
<property name="gainA">
<value>9.71556187</value>
</property>
<property name="gainB">
<value>-6.9280777</value>
</property>
<property name="gainC">
<value>-4.32751083</value>
</property>
</object>
<object class="AutomationPoint" id="{71d39c29-652d-42fa-80ac-8846f5ff4bb3}">
<property name="position">
<value>3.5</value>
@@ -112,7 +112,7 @@
</object>
<object class="EventMixerGroup" id="{4d614ec5-157f-45a4-8157-3b3ae9d0fda2}">
<property name="volume">
<value>2</value>
<value>7</value>
</property>
<property name="name">
<value>Audio 4</value>
@@ -69,15 +69,15 @@
</object>
<object class="EventAutomatableProperties" id="{c76e816d-57c8-456c-a329-17eb0603d09f}">
<property name="maximumDistance">
<value>45</value>
<value>35</value>
</property>
</object>
<object class="MarkerTrack" id="{59eaef25-4ee8-45f7-92cb-43f884ffe19f}" />
<object class="GroupTrack" id="{2f703b05-d98b-48c6-936f-3d4f241ec7d1}">
<relationship name="modules">
<destination>{efec9281-5808-4c8c-b14a-d8283315b1bd}</destination>
<destination>{0d0ae5a0-63a9-41b5-a44f-3dab075b42bb}</destination>
<destination>{2cad7432-1550-4f77-8502-21e378f63e8f}</destination>
<destination>{b890ffff-e848-4f8a-8a32-06e0ff19f1b0}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{d606328d-d47d-42d7-8be4-de72450a50d8}</destination>
@@ -85,7 +85,7 @@
</object>
<object class="Timeline" id="{2b142eac-322f-4f76-a86a-f1ca9ba5c8f3}">
<relationship name="modules">
<destination>{efec9281-5808-4c8c-b14a-d8283315b1bd}</destination>
<destination>{b890ffff-e848-4f8a-8a32-06e0ff19f1b0}</destination>
</relationship>
<relationship name="markers">
<destination>{4c5469cd-3774-4f33-b944-5b53b7633d98}</destination>
@@ -97,9 +97,6 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{f65a5ce4-c06c-46df-9a06-859ff71e3316}">
<property name="overridingInputFormat">
<value>1</value>
</property>
<relationship name="automators">
<destination>{577898e3-8d39-419b-8a71-df165b29fdb3}</destination>
</relationship>
@@ -142,14 +139,6 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{4c312478-5cc1-4b8d-b975-dbab67a5ed47}" />
<object class="SingleSound" id="{efec9281-5808-4c8c-b14a-d8283315b1bd}">
<property name="length">
<value>14.10047619047619</value>
</property>
<relationship name="audioFile">
<destination>{96a556a3-d086-40b0-aa07-991f8b6d0688}</destination>
</relationship>
</object>
<object class="TransitionSourceSound" id="{0d0ae5a0-63a9-41b5-a44f-3dab075b42bb}">
<property name="length">
<value>0.60000000000000009</value>
@@ -166,9 +155,17 @@
<destination>{077441fd-c9fd-4db8-9f45-74b8f58aa168}</destination>
</relationship>
</object>
<object class="SingleSound" id="{b890ffff-e848-4f8a-8a32-06e0ff19f1b0}">
<property name="length">
<value>14</value>
</property>
<relationship name="audioFile">
<destination>{efb2df06-1b73-45d3-9632-20ba053fa427}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{d606328d-d47d-42d7-8be4-de72450a50d8}">
<property name="volume">
<value>1</value>
<value>-3</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -211,8 +208,9 @@
<object class="MixerBusEffectChain" id="{fea1caca-e5b2-4e66-bd5e-33264c5623f8}">
<relationship name="effects">
<destination>{018473e4-0f0a-45f3-bcda-c733c71ad55e}</destination>
<destination>{1b59e476-ff30-46fa-be6f-43a65cbf5b64}</destination>
<destination>{db98d02a-7f61-4302-91b6-d6bbcd7b1bdb}</destination>
<destination>{abb71e19-d4dd-40a4-8768-d3e84d173117}</destination>
<destination>{1b59e476-ff30-46fa-be6f-43a65cbf5b64}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{ea967f00-b001-4510-af81-c2c8a34c94e3}" />
@@ -267,6 +265,15 @@
</relationship>
</object>
<object class="MixerBusFader" id="{018473e4-0f0a-45f3-bcda-c733c71ad55e}" />
<object class="SpatialiserEffect" id="{db98d02a-7f61-4302-91b6-d6bbcd7b1bdb}" />
<object class="PluginEffect" id="{abb71e19-d4dd-40a4-8768-d3e84d173117}">
<property name="bypass">
<value>true</value>
</property>
<relationship name="plugin">
<destination>{0ad09f58-e094-42d0-a51b-d8be1fcebb74}</destination>
</relationship>
</object>
<object class="MultibandEqEffect" id="{1b59e476-ff30-46fa-be6f-43a65cbf5b64}">
<property name="frequencyA">
<value>19834.9668</value>
@@ -278,11 +285,6 @@
<destination>{f24ecb42-679a-4dd2-9d99-fd6d472bd1ef}</destination>
</relationship>
</object>
<object class="PluginEffect" id="{abb71e19-d4dd-40a4-8768-d3e84d173117}">
<relationship name="plugin">
<destination>{0ad09f58-e094-42d0-a51b-d8be1fcebb74}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{ce3bc340-acd9-4d8e-b42b-a353f4684c95}">
<property name="position">
<value>0</value>
@@ -346,14 +348,6 @@
<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="{0ad09f58-e094-42d0-a51b-d8be1fcebb74}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
@@ -397,15 +391,12 @@
<destination>{38040401-218f-4f75-bc87-dbb3bfa714f4}</destination>
</relationship>
</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>
<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="DataPluginParameter" id="{ab4b7596-405d-4a79-a487-4a89c03bb335}">
@@ -565,7 +556,7 @@
<value>DAMaxDist</value>
</property>
<property name="value">
<value>100</value>
<value>50</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -620,7 +611,7 @@
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0.794999957</value>
<value>1</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
@@ -631,7 +622,7 @@
<value>DipolePower</value>
</property>
<property name="value">
<value>1.39999998</value>
<value>4</value>
</property>
<property name="curve">
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
@@ -804,6 +795,17 @@
<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>
@@ -65,7 +65,7 @@
</object>
<object class="EventAutomatableProperties" id="{9d7e6e68-4635-4e3b-a66b-975d89419ca5}">
<property name="minimumDistance">
<value>0.300000012</value>
<value>5.4000001</value>
</property>
<property name="maximumDistance">
<value>7.5999999</value>
@@ -177,6 +177,7 @@
<relationship name="effects">
<destination>{b032d296-cd7a-49f3-b779-c0bcdd41c785}</destination>
<destination>{c3166e0e-4f7f-479c-b792-5187cf483ac1}</destination>
<destination>{6167048b-2dad-4047-bcc6-cf12637bf007}</destination>
<destination>{002eb550-06c0-4be6-a04a-f0700dbf746f}</destination>
</relationship>
</object>
@@ -218,7 +219,11 @@
<destination>{13c29f0f-d7ad-4af2-bf22-c5468f594b34}</destination>
</relationship>
</object>
<object class="SpatialiserEffect" id="{6167048b-2dad-4047-bcc6-cf12637bf007}" />
<object class="PluginEffect" id="{002eb550-06c0-4be6-a04a-f0700dbf746f}">
<property name="bypass">
<value>true</value>
</property>
<relationship name="plugin">
<destination>{942b2238-e463-4e25-ab5c-513f4933529d}</destination>
</relationship>
@@ -237,7 +242,7 @@
<value>0.0010893246187363835</value>
</property>
<property name="value">
<value>3.81469727e-06</value>
<value>1</value>
</property>
</object>
<object class="AutomationPoint" id="{f27b076f-98a5-4814-910f-514e8487ea24}">
@@ -245,7 +250,7 @@
<value>0.40087145969498916</value>
</property>
<property name="value">
<value>-10</value>
<value>-9.00000381</value>
</property>
</object>
<object class="AutomationPoint" id="{800a894f-e705-4ce0-8fec-ad994657d780}">
@@ -253,7 +258,7 @@
<value>0.99891067538126377</value>
</property>
<property name="value">
<value>-20</value>
<value>-19.0000038</value>
</property>
</object>
<object class="AutomationPoint" id="{00e4d139-30b1-4ddd-9e51-0378beb6a660}">
@@ -261,7 +266,7 @@
<value>0.19716775599128541</value>
</property>
<property name="value">
<value>3.81469727e-06</value>
<value>1</value>
</property>
</object>
<object class="Automator" id="{13c29f0f-d7ad-4af2-bf22-c5468f594b34}">
@@ -331,7 +336,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -340,7 +344,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -669,7 +672,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -686,7 +688,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>
@@ -5,7 +5,7 @@
<value>Cafe</value>
</property>
<property name="outputFormat">
<value>5</value>
<value>2</value>
</property>
<relationship name="folder">
<destination>{e5bf65ee-d6e7-4aa2-8f58-f527d31905fa}</destination>
@@ -68,8 +68,11 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{bae5b038-7025-49bb-a46b-664b3b2cf708}">
<property name="maxVoices">
<value>1</value>
</property>
<property name="minimumDistance">
<value>2.60000014</value>
<value>50</value>
</property>
<property name="maximumDistance">
<value>80</value>
@@ -101,7 +104,7 @@
</object>
<object class="EventMixerMaster" id="{52b9f8cb-8226-41f0-b3b9-efb4865881d2}">
<property name="overridingInputFormat">
<value>1</value>
<value>3</value>
</property>
<relationship name="automators">
<destination>{1029957e-54dc-4f5d-9a92-dcbaa88424f6}</destination>
@@ -170,6 +173,9 @@
</relationship>
</object>
<object class="EventMixerGroup" id="{57a7f26c-f968-4628-ab12-b7590fef94ee}">
<property name="volume">
<value>4</value>
</property>
<property name="name">
<value>Audio 1</value>
</property>
@@ -211,7 +217,7 @@
<object class="MixerBusEffectChain" id="{371397f9-0123-43a5-a07e-3bb241fddd6c}">
<relationship name="effects">
<destination>{c0ec98cf-5478-4926-8cbe-53725111fa06}</destination>
<destination>{b8a30782-ccf8-49f2-a792-761ba82ee67a}</destination>
<destination>{18444478-630c-480b-8954-c3dc986b6029}</destination>
<destination>{c2bf834d-7ae6-4de6-8ef9-5bf74b851a31}</destination>
</relationship>
</object>
@@ -267,11 +273,7 @@
</relationship>
</object>
<object class="MixerBusFader" id="{c0ec98cf-5478-4926-8cbe-53725111fa06}" />
<object class="PluginEffect" id="{b8a30782-ccf8-49f2-a792-761ba82ee67a}">
<relationship name="plugin">
<destination>{faae6a60-5b2c-4ce0-afcf-00524d7868ff}</destination>
</relationship>
</object>
<object class="SpatialiserEffect" id="{18444478-630c-480b-8954-c3dc986b6029}" />
<object class="MultibandEqEffect" id="{c2bf834d-7ae6-4de6-8ef9-5bf74b851a31}">
<property name="frequencyA">
<value>22000</value>
@@ -343,49 +345,6 @@
<value>-3.00000381</value>
</property>
</object>
<object class="Plugin" id="{faae6a60-5b2c-4ce0-afcf-00524d7868ff}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
</property>
<relationship name="pluginParameters">
<destination>{db34e265-1fea-4d3b-a0b8-c9c5728c5447}</destination>
<destination>{9d55c8d3-0446-441a-8e7b-391604958e82}</destination>
<destination>{4b652e6d-cf41-48a1-9861-fabe7bd1e705}</destination>
<destination>{c42bb6c4-c0ed-43ec-9270-d94877f6f53a}</destination>
<destination>{6bbd850a-f2bd-4cd9-a9f2-a89b13fa201e}</destination>
<destination>{e2024f5a-0cc9-42de-9f39-4f72a3ae95f6}</destination>
<destination>{be1b58a8-6146-4027-92be-3b8850e582da}</destination>
<destination>{d4c52767-07c3-4b1a-afa5-cbfbb2f8e4bc}</destination>
<destination>{1a8bc619-5e62-4aa4-a62f-9dd1162b4e6c}</destination>
<destination>{59d2d217-d1a0-492f-8fa9-058a4ae6cbe2}</destination>
<destination>{6478d5e6-d68f-4b0b-96c4-a7a0d63a2fa0}</destination>
<destination>{4b18d757-5751-4993-9ca4-d2ae325671bd}</destination>
<destination>{e4245c7b-7ae8-4e77-8a73-4de1bf7bb91b}</destination>
<destination>{8a563a29-a97c-49e7-835d-7dfaf9ffb8ec}</destination>
<destination>{8829b2a6-ec4e-4abc-8430-123c0eef5ba8}</destination>
<destination>{67b5b817-26ec-4de1-b0b1-b73f07b7170b}</destination>
<destination>{bafc43a7-6cd0-4258-abde-be6107d3f277}</destination>
<destination>{3901fb08-5d1d-4e1d-8d4a-3c789a7f97b3}</destination>
<destination>{63f1839b-e2f4-4777-b794-42459807727f}</destination>
<destination>{cbb896df-47e2-4a3b-942d-2e9cf82cfe83}</destination>
<destination>{ecd1c593-b9af-4369-9476-ee7c504fd5e0}</destination>
<destination>{5cb7fb00-ef3e-4c48-94c6-4ee8bf5086a3}</destination>
<destination>{af629706-310e-49cd-ac52-ee68f0c819fd}</destination>
<destination>{c8d1f4ab-1580-460e-965c-eb4fc31e8362}</destination>
<destination>{92be1ba2-6cfb-4430-8111-4b123eee46b5}</destination>
<destination>{ab66ee80-a868-4aec-90a6-81651db575c6}</destination>
<destination>{75767ed5-9779-4a61-8e5c-ff5f5e76a28e}</destination>
<destination>{908012c4-cc6a-4a9f-8290-b5ecb1c93993}</destination>
<destination>{3e219b68-77d0-4863-909d-74739332f837}</destination>
<destination>{c5fd7a8c-eaac-4289-9f22-ce9493f0d5ef}</destination>
<destination>{963493de-bf25-4d2f-97ce-7a922a64bee8}</destination>
<destination>{4b39e1f0-254b-4246-a3a1-2fe7ab42d88c}</destination>
<destination>{c9f82f8f-8d13-4af8-8342-9f3c30e2cb14}</destination>
<destination>{cc028ece-0979-48bd-a0a4-74d9ed5047fe}</destination>
<destination>{f31490c9-14fa-46ae-a4eb-82cbb54ef97c}</destination>
<destination>{1f0a920f-242c-4a5b-9931-8d3a7a2bbe33}</destination>
</relationship>
</object>
<object class="Automator" id="{41221a85-2c68-4e1a-85e5-917554e08efd}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
@@ -394,402 +353,6 @@
<destination>{8993fd31-834a-45b3-8914-99364275c99d}</destination>
</relationship>
</object>
<object class="DataPluginParameter" id="{db34e265-1fea-4d3b-a0b8-c9c5728c5447}">
<property name="name">
<value>SourcePos</value>
</property>
<property name="dataType">
<value>-2</value>
</property>
</object>
<object class="DataPluginParameter" id="{9d55c8d3-0446-441a-8e7b-391604958e82}">
<property name="name">
<value>OverallGain</value>
</property>
<property name="dataType">
<value>-1</value>
</property>
</object>
<object class="IntPluginParameter" id="{4b652e6d-cf41-48a1-9861-fabe7bd1e705}">
<property name="name">
<value>ApplyDA</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
</property>
<property name="maximumValue">
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{c42bb6c4-c0ed-43ec-9270-d94877f6f53a}">
<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="{6bbd850a-f2bd-4cd9-a9f2-a89b13fa201e}">
<property name="name">
<value>ApplyDir</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
</property>
<property name="maximumValue">
<value>2</value>
</property>
</object>
<object class="IntPluginParameter" id="{e2024f5a-0cc9-42de-9f39-4f72a3ae95f6}">
<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="{be1b58a8-6146-4027-92be-3b8850e582da}">
<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="{d4c52767-07c3-4b1a-afa5-cbfbb2f8e4bc}">
<property name="name">
<value>ApplyRefl</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="BoolPluginParameter" id="{1a8bc619-5e62-4aa4-a62f-9dd1162b4e6c}">
<property name="name">
<value>ApplyPath</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="IntPluginParameter" id="{59d2d217-d1a0-492f-8fa9-058a4ae6cbe2}">
<property name="name">
<value>Interpolation</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="{6478d5e6-d68f-4b0b-96c4-a7a0d63a2fa0}">
<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="{4b18d757-5751-4993-9ca4-d2ae325671bd}">
<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="{e4245c7b-7ae8-4e77-8a73-4de1bf7bb91b}">
<property name="name">
<value>DAMinDist</value>
</property>
<property name="value">
<value>2.5999999</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{8a563a29-a97c-49e7-835d-7dfaf9ffb8ec}">
<property name="name">
<value>DAMaxDist</value>
</property>
<property name="value">
<value>70</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{8829b2a6-ec4e-4abc-8430-123c0eef5ba8}">
<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="{67b5b817-26ec-4de1-b0b1-b73f07b7170b}">
<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="{bafc43a7-6cd0-4258-abde-be6107d3f277}">
<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="{3901fb08-5d1d-4e1d-8d4a-3c789a7f97b3}">
<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="{63f1839b-e2f4-4777-b794-42459807727f}">
<property name="name">
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{cbb896df-47e2-4a3b-942d-2e9cf82cfe83}">
<property name="name">
<value>DipolePower</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curve">
<value>{(0.000000,1.000000)(1.000000,4.000000)}</value>
</property>
</object>
<object class="FloatPluginParameter" id="{ecd1c593-b9af-4369-9476-ee7c504fd5e0}">
<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="{5cb7fb00-ef3e-4c48-94c6-4ee8bf5086a3}">
<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="{af629706-310e-49cd-ac52-ee68f0c819fd}">
<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="{c8d1f4ab-1580-460e-965c-eb4fc31e8362}">
<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="{92be1ba2-6cfb-4430-8111-4b123eee46b5}">
<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="{ab66ee80-a868-4aec-90a6-81651db575c6}">
<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="{75767ed5-9779-4a61-8e5c-ff5f5e76a28e}">
<property name="name">
<value>ReflBinaural</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{908012c4-cc6a-4a9f-8290-b5ecb1c93993}">
<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="{3e219b68-77d0-4863-909d-74739332f837}">
<property name="name">
<value>PathBinaural</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{c5fd7a8c-eaac-4289-9f22-ce9493f0d5ef}">
<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="{963493de-bf25-4d2f-97ce-7a922a64bee8}">
<property name="name">
<value>SimOutputs</value>
</property>
<property name="dataType">
<value>0</value>
</property>
</object>
<object class="BoolPluginParameter" id="{4b39e1f0-254b-4246-a3a1-2fe7ab42d88c}">
<property name="name">
<value>DirectBinaural</value>
</property>
<property name="value">
<value>true</value>
</property>
</object>
<object class="DataPluginParameter" id="{c9f82f8f-8d13-4af8-8342-9f3c30e2cb14}">
<property name="name">
<value>DistRange</value>
</property>
<property name="dataType">
<value>-6</value>
</property>
</object>
<object class="IntPluginParameter" id="{cc028ece-0979-48bd-a0a4-74d9ed5047fe}">
<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="{f31490c9-14fa-46ae-a4eb-82cbb54ef97c}">
<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="{1f0a920f-242c-4a5b-9931-8d3a7a2bbe33}">
<property name="name">
<value>PathNormEQ</value>
</property>
<property name="value">
<value>false</value>
</property>
</object>
<object class="AutomationCurve" id="{8993fd31-834a-45b3-8914-99364275c99d}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
@@ -56,7 +56,17 @@
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{5a5b237f-07eb-4391-93a0-15e93e595c93}" />
<object class="EventAutomatableProperties" id="{5a5b237f-07eb-4391-93a0-15e93e595c93}">
<property name="maxVoices">
<value>6</value>
</property>
<property name="maximumDistance">
<value>5.20000029</value>
</property>
<property name="triggerCooldown">
<value>220</value>
</property>
</object>
<object class="MarkerTrack" id="{335db793-4696-40f5-ac71-96f02ddf6153}" />
<object class="GroupTrack" id="{c95564b4-a39a-4a16-b885-aa57a772ad22}">
<relationship name="modules">
@@ -72,6 +82,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{c28d57a6-c63b-486f-88a3-35590b9dbc71}">
<property name="volume">
<value>4</value>
</property>
<relationship name="effectChain">
<destination>{3889479a-2bd9-4db9-afbb-c3c8832cc76b}</destination>
</relationship>
@@ -57,8 +57,11 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{9c0ae271-27f8-4329-a0af-abe75088ef22}">
<property name="minimumDistance">
<value>9.80000019</value>
</property>
<property name="maximumDistance">
<value>1000</value>
<value>85</value>
</property>
</object>
<object class="MarkerTrack" id="{125996c3-1840-4b17-832d-c1554bd09e17}" />
@@ -109,7 +112,7 @@
</object>
<object class="EventMixerGroup" id="{8ccd816d-f005-4f8f-bbd7-52c6d431beb1}">
<property name="volume">
<value>7</value>
<value>8</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -35,7 +35,7 @@
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
</relationship>
<relationship name="parameters">
<destination>{debe10fb-e882-45fe-bfd7-71ba8ff8070d}</destination>
<destination>{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}</destination>
</relationship>
<relationship name="banks">
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
@@ -48,7 +48,7 @@
</object>
<object class="MasterTrack" id="{53fe6597-f7d5-4812-85fe-dea94f393db7}">
<relationship name="automationTracks">
<destination>{9a8a5cab-68ff-4f12-9759-f55629532d2b}</destination>
<destination>{235cb3d5-a87c-4733-b2d1-39fc2e731f3b}</destination>
</relationship>
<relationship name="modules">
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
@@ -71,7 +71,7 @@
</object>
<object class="EventAutomatableProperties" id="{c0ccf943-b97a-4e00-9551-a070e5c1a421}">
<property name="minimumDistance">
<value>0.300000012</value>
<value>4</value>
</property>
<property name="maximumDistance">
<value>8</value>
@@ -127,9 +127,9 @@
<destination>{663b1d7d-7159-4547-81a6-a4d33b9690be}</destination>
</relationship>
</object>
<object class="ParameterProxy" id="{debe10fb-e882-45fe-bfd7-71ba8ff8070d}">
<object class="ParameterProxy" id="{3db01fcd-bb76-45d9-9d4d-b4049ae39b95}">
<relationship name="preset">
<destination>{0ddb552a-fc8b-4494-adbd-92aaf9151563}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}">
@@ -146,9 +146,9 @@
<destination>{56573da0-0692-40e7-854a-3cbe706d679b}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{9a8a5cab-68ff-4f12-9759-f55629532d2b}">
<object class="AutomationTrack" id="{235cb3d5-a87c-4733-b2d1-39fc2e731f3b}">
<relationship name="automator">
<destination>{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}</destination>
<destination>{df95b9af-05c2-4929-bd1c-d4ade15eaef5}</destination>
</relationship>
</object>
<object class="TransitionSourceSound" id="{eaaabc63-19d4-442e-be7c-83c90b09f9cd}">
@@ -347,7 +347,7 @@
<relationship name="effects">
<destination>{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}</destination>
<destination>{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}</destination>
<destination>{a8be7296-cd96-4a66-828c-7d59efa175df}</destination>
<destination>{d9b8c0c0-c8d4-47ea-b2e0-4f09e5b7d6e6}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
@@ -490,15 +490,15 @@
<value>14.5</value>
</property>
</object>
<object class="MultibandEqEffect" id="{a8be7296-cd96-4a66-828c-7d59efa175df}">
<object class="MultibandEqEffect" id="{d9b8c0c0-c8d4-47ea-b2e0-4f09e5b7d6e6}">
<property name="frequencyA">
<value>19428.2324</value>
<value>18151.3086</value>
</property>
<property name="qualityA">
<value>0.751586199</value>
<value>0.639999986</value>
</property>
<relationship name="automators">
<destination>{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}</destination>
<destination>{df95b9af-05c2-4929-bd1c-d4ade15eaef5}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
@@ -657,61 +657,46 @@
</property>
</object>
<object class="MixerBusFader" id="{ff851d1b-c1a9-4f57-ac27-20e5708e429b}" />
<object class="Automator" id="{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}">
<object class="Automator" id="{df95b9af-05c2-4929-bd1c-d4ade15eaef5}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{913bdbf7-1239-4335-ad62-a8b04885e596}</destination>
<destination>{e46b5ac0-bea7-4474-964c-b5652cd06743}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{913bdbf7-1239-4335-ad62-a8b04885e596}">
<object class="AutomationCurve" id="{e46b5ac0-bea7-4474-964c-b5652cd06743}">
<relationship name="parameter">
<destination>{0ddb552a-fc8b-4494-adbd-92aaf9151563}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{bead9ac0-0f96-4105-9a36-ee256c84a983}</destination>
<destination>{7dacdca6-1032-4ebd-b7e4-4820d41f9cd5}</destination>
<destination>{325dd22b-3107-48dc-b424-a3fe392f2f12}</destination>
<destination>{1d1654ec-289a-44fd-91dd-4d01595237c9}</destination>
<destination>{9df682e5-e4aa-423d-99d6-33b3d8bddd69}</destination>
<destination>{e50959f4-3a84-4fb8-b444-ad833c5f5e0b}</destination>
<destination>{adcb8d02-64ec-42a9-8a3d-aab08b31ea29}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{bead9ac0-0f96-4105-9a36-ee256c84a983}">
<object class="AutomationPoint" id="{9df682e5-e4aa-423d-99d6-33b3d8bddd69}">
<property name="position">
<value>0.021528525296017224</value>
<value>0.00061793785310734458</value>
</property>
<property name="value">
<value>12000</value>
</property>
<property name="curveShape">
<value>0.0126095125</value>
</property>
</object>
<object class="AutomationPoint" id="{7dacdca6-1032-4ebd-b7e4-4820d41f9cd5}">
<object class="AutomationPoint" id="{e50959f4-3a84-4fb8-b444-ad833c5f5e0b}">
<property name="position">
<value>3</value>
<value>0.99496822033898302</value>
</property>
<property name="value">
<value>4000</value>
</property>
<property name="curveShape">
<value>0.0966112465</value>
<value>180</value>
</property>
</object>
<object class="AutomationPoint" id="{325dd22b-3107-48dc-b424-a3fe392f2f12}">
<object class="AutomationPoint" id="{adcb8d02-64ec-42a9-8a3d-aab08b31ea29}">
<property name="position">
<value>9.9000000000000004</value>
<value>0.85000000000000009</value>
</property>
<property name="value">
<value>25</value>
</property>
</object>
<object class="AutomationPoint" id="{1d1654ec-289a-44fd-91dd-4d01595237c9}">
<property name="position">
<value>7.4973086983354067</value>
</property>
<property name="value">
<value>100</value>
<value>2700</value>
</property>
</object>
</objects>
@@ -76,6 +76,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{02612956-0842-47a1-a48d-7779aeba217b}">
<property name="volume">
<value>2</value>
</property>
<relationship name="effectChain">
<destination>{6bf9e111-0c5b-44a6-8d0a-7f7b9a72a8af}</destination>
</relationship>
@@ -108,7 +111,7 @@
</object>
<object class="EventMixerGroup" id="{70736360-07ff-485f-bc8e-3a9b35b9cbd7}">
<property name="volume">
<value>4</value>
<value>5</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -127,6 +130,7 @@
<relationship name="effects">
<destination>{b2df2382-b312-4bc9-9fe6-00c97951c253}</destination>
<destination>{7d46e40d-a009-42ab-9ee8-31e410c9616c}</destination>
<destination>{256895d0-5da0-4929-b540-dde529a2dd7e}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{66e45fc4-fa70-4f5b-8728-46f58b587670}" />
@@ -168,6 +172,50 @@
<object class="MixerBusPanner" id="{33cb75b0-9501-4c0d-a2b7-0d853e34ae53}" />
<object class="MixerBusFader" id="{b2df2382-b312-4bc9-9fe6-00c97951c253}" />
<object class="SpatialiserEffect" id="{7d46e40d-a009-42ab-9ee8-31e410c9616c}" />
<object class="MultibandEqEffect" id="{256895d0-5da0-4929-b540-dde529a2dd7e}">
<property name="filterTypeA">
<value>9</value>
</property>
<property name="filterTypeB">
<value>9</value>
</property>
<property name="filterTypeC">
<value>9</value>
</property>
<property name="filterTypeD">
<value>14</value>
</property>
<property name="frequencyA">
<value>13302.5498</value>
</property>
<property name="frequencyB">
<value>84.7956314</value>
</property>
<property name="frequencyC">
<value>473.39566</value>
</property>
<property name="frequencyD">
<value>28.8713398</value>
</property>
<property name="qualityA">
<value>0.528509259</value>
</property>
<property name="qualityB">
<value>1.20000005</value>
</property>
<property name="qualityC">
<value>1.55000007</value>
</property>
<property name="gainA">
<value>7.63510799</value>
</property>
<property name="gainB">
<value>-6.9280777</value>
</property>
<property name="gainC">
<value>-4.32751083</value>
</property>
</object>
<object class="AutomationPoint" id="{cce0756c-ac3f-48a6-b831-7b8d5ba8a4df}">
<property name="position">
<value>5</value>
@@ -96,7 +96,7 @@
<value>1.05</value>
</property>
<property name="volume">
<value>5</value>
<value>6.5</value>
</property>
<property name="pitch">
<value>0.900000036</value>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{e69ea1fa-d066-4697-b1bb-287ed21fb082}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{3ee3d269-0575-444d-9ac7-99bfc14383c5}</destination>
</relationship>
@@ -107,7 +107,7 @@
</object>
<object class="EventMixerGroup" id="{b8ab8648-8ab9-4b07-a6af-76d508502d9c}">
<property name="volume">
<value>-12.5</value>
<value>-7.5</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -539,7 +539,7 @@
<value>0</value>
</property>
<property name="value">
<value>-11</value>
<value>-9</value>
</property>
</object>
<object class="AutomationPoint" id="{744b083e-7c2d-465c-954e-fc7cc6af759b}">
@@ -547,7 +547,7 @@
<value>1</value>
</property>
<property name="value">
<value>-80</value>
<value>-66.6666641</value>
</property>
</object>
</objects>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{4565dd8e-c5b2-41c3-8f77-2c9b1fee7a8c}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{d0503be0-4bc8-4f3b-8d7a-dea749486564}</destination>
</relationship>
@@ -56,7 +56,14 @@
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{36cf5b1d-e985-4ad5-8b32-79341e66a2ef}" />
<object class="EventAutomatableProperties" id="{36cf5b1d-e985-4ad5-8b32-79341e66a2ef}">
<property name="minimumDistance">
<value>4.4000001</value>
</property>
<property name="maximumDistance">
<value>9.60000038</value>
</property>
</object>
<object class="MarkerTrack" id="{3de232bb-9d47-4da4-86b1-51b85ac2434c}" />
<object class="GroupTrack" id="{236fa659-2d12-4e06-bb62-5ff02c9c9f64}">
<relationship name="modules">
@@ -72,6 +79,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{1a2d59f7-a341-4de0-8c72-72a43c7fe2db}">
<property name="volume">
<value>2</value>
</property>
<relationship name="effectChain">
<destination>{6b06f052-46cb-4b8a-a574-4c6331d1ddd9}</destination>
</relationship>
@@ -103,7 +113,7 @@
</object>
<object class="EventMixerGroup" id="{47480082-8e13-4533-ae2b-0fcd647fc89e}">
<property name="volume">
<value>7</value>
<value>8</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -122,6 +132,7 @@
<relationship name="effects">
<destination>{c3a7ce55-63eb-4cc7-98b1-7a978ef7afdf}</destination>
<destination>{53f35ea8-3da8-4f7d-a58a-33efe4c89a81}</destination>
<destination>{52794ca6-9ad6-48fb-b2c4-669b495948cc}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{372833ac-c82c-4020-8095-87f572d9cdcd}" />
@@ -157,6 +168,50 @@
<object class="MixerBusPanner" id="{dce3ab3c-0ac1-47e0-a1cb-8d61e71a25b7}" />
<object class="MixerBusFader" id="{c3a7ce55-63eb-4cc7-98b1-7a978ef7afdf}" />
<object class="SpatialiserEffect" id="{53f35ea8-3da8-4f7d-a58a-33efe4c89a81}" />
<object class="MultibandEqEffect" id="{52794ca6-9ad6-48fb-b2c4-669b495948cc}">
<property name="filterTypeA">
<value>9</value>
</property>
<property name="filterTypeB">
<value>9</value>
</property>
<property name="filterTypeC">
<value>9</value>
</property>
<property name="filterTypeD">
<value>14</value>
</property>
<property name="frequencyA">
<value>16029.4531</value>
</property>
<property name="frequencyB">
<value>84.7956314</value>
</property>
<property name="frequencyC">
<value>473.39566</value>
</property>
<property name="frequencyD">
<value>28.8713398</value>
</property>
<property name="qualityA">
<value>0.528509259</value>
</property>
<property name="qualityB">
<value>1.20000005</value>
</property>
<property name="qualityC">
<value>1.55000007</value>
</property>
<property name="gainA">
<value>7.63510799</value>
</property>
<property name="gainB">
<value>-6.9280777</value>
</property>
<property name="gainC">
<value>-4.32751083</value>
</property>
</object>
<object class="AutomationPoint" id="{e399f339-0cd1-4127-94c5-53101cfd1e36}">
<property name="position">
<value>5.2000000000000002</value>
@@ -233,7 +233,7 @@
<value>0</value>
</property>
<property name="value">
<value>3.81469727e-06</value>
<value>3</value>
</property>
</object>
<object class="AutomationPoint" id="{8aa7070f-1793-4bb1-995c-2cc7b0126c8d}">
@@ -241,7 +241,7 @@
<value>0.99891067538126377</value>
</property>
<property name="value">
<value>-8</value>
<value>-5.00000381</value>
</property>
</object>
<object class="AutomationPoint" id="{9ecd961d-0670-474f-9572-d2f037ecf3a4}">
@@ -249,7 +249,7 @@
<value>0.2510893246187364</value>
</property>
<property name="value">
<value>-4</value>
<value>-1.00000381</value>
</property>
</object>
<object class="AutomationPoint" id="{4214f9ed-7560-4cad-882c-20fca2a6d3c3}">
@@ -257,7 +257,7 @@
<value>0.15032679738562094</value>
</property>
<property name="value">
<value>-1</value>
<value>1.99999619</value>
</property>
</object>
<object class="Automator" id="{5a042b91-1cea-4a0d-b1c8-4c50bb414b50}">
@@ -32,7 +32,7 @@
<destination>{64f635ce-71c2-4610-addc-24535118d759}</destination>
</relationship>
<relationship name="parameters">
<destination>{a026769f-81e4-49cd-9c80-ab165c71dad8}</destination>
<destination>{71fd789f-419f-4ca0-9ad8-6def4f70a3dd}</destination>
</relationship>
<relationship name="banks">
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
@@ -45,7 +45,8 @@
</object>
<object class="MasterTrack" id="{8c71cb36-ddb6-4548-afca-be6609196cec}">
<relationship name="automationTracks">
<destination>{deb76e6a-cab5-4f0d-b038-052dfe68d822}</destination>
<destination>{7ab569b7-03ed-4e9b-bec9-7d8c25faa258}</destination>
<destination>{330190cc-efd6-43f4-865c-7a3189e92d08}</destination>
</relationship>
<relationship name="modules">
<destination>{da37418f-9e90-4b51-8809-3a145d5a53ff}</destination>
@@ -67,6 +68,9 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{add03933-e2e4-443f-bd5d-c33e3c82c9cc}">
<property name="minimumDistance">
<value>4.4000001</value>
</property>
<property name="maximumDistance">
<value>8.40000057</value>
</property>
@@ -90,12 +94,15 @@
<destination>{aaacf1f7-f4d8-4a33-b88e-462af1c76639}</destination>
</relationship>
</object>
<object class="ParameterProxy" id="{a026769f-81e4-49cd-9c80-ab165c71dad8}">
<object class="ParameterProxy" id="{71fd789f-419f-4ca0-9ad8-6def4f70a3dd}">
<relationship name="preset">
<destination>{bea87185-c91e-4761-96d2-956741335a81}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{83bde981-951f-4702-8e7d-58ba1a0ee518}">
<relationship name="automators">
<destination>{54b0c738-b68d-42ac-96fd-3bc2083c2be9}</destination>
</relationship>
<relationship name="effectChain">
<destination>{0ee94ee7-173e-4b19-88eb-e557bc685af4}</destination>
</relationship>
@@ -106,9 +113,14 @@
<destination>{ef979fa1-a412-4494-9bb6-9897c030b9c4}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{deb76e6a-cab5-4f0d-b038-052dfe68d822}">
<object class="AutomationTrack" id="{7ab569b7-03ed-4e9b-bec9-7d8c25faa258}">
<relationship name="automator">
<destination>{176ce5fd-bd9a-4f4d-b268-933525aef9e9}</destination>
<destination>{ef77220d-a7d7-4d54-8dcf-944b78bb35e6}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{330190cc-efd6-43f4-865c-7a3189e92d08}">
<relationship name="automator">
<destination>{54b0c738-b68d-42ac-96fd-3bc2083c2be9}</destination>
</relationship>
</object>
<object class="TransitionSourceSound" id="{da37418f-9e90-4b51-8809-3a145d5a53ff}">
@@ -188,11 +200,19 @@
<destination>{364817c0-a364-41d0-8364-900be35a2576}</destination>
</relationship>
</object>
<object class="Automator" id="{54b0c738-b68d-42ac-96fd-3bc2083c2be9}">
<property name="nameOfPropertyBeingAutomated">
<value>volume</value>
</property>
<relationship name="automationCurves">
<destination>{c6bd1c2e-a222-4691-b9aa-cf8af7003275}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{0ee94ee7-173e-4b19-88eb-e557bc685af4}">
<relationship name="effects">
<destination>{899880ec-37f3-47c4-9f29-02d7a53dd77e}</destination>
<destination>{a3c7f9a6-1f2c-4a4d-95c1-c5dda21e7676}</destination>
<destination>{223e6cc1-d38c-4939-a739-0adda639f961}</destination>
<destination>{9b0db4d4-ee80-4aab-ad48-fe6fe925cb68}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{c55b4ca9-0ba4-4367-af8f-1e9c69d44770}" />
@@ -236,17 +256,30 @@
<destination>{1da70622-06c8-45b1-88da-3ebe97684e00}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{c6bd1c2e-a222-4691-b9aa-cf8af7003275}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{d8a83c41-4f1f-4c16-87ed-ddd36b77b2ec}</destination>
<destination>{5e94862b-6568-4993-aedd-96e761bab1ac}</destination>
<destination>{5a8ffdfc-6e10-4e69-946f-a65cf897d904}</destination>
<destination>{66e9a064-bca0-4874-84ff-b3a130e313e6}</destination>
<destination>{3fde9b62-de8d-4a2d-ba2b-a4bc95c906e3}</destination>
<destination>{4ec125cb-1c5e-4020-9be9-30198f8fd6c5}</destination>
</relationship>
</object>
<object class="MixerBusFader" id="{899880ec-37f3-47c4-9f29-02d7a53dd77e}" />
<object class="SpatialiserEffect" id="{a3c7f9a6-1f2c-4a4d-95c1-c5dda21e7676}" />
<object class="MultibandEqEffect" id="{223e6cc1-d38c-4939-a739-0adda639f961}">
<object class="MultibandEqEffect" id="{9b0db4d4-ee80-4aab-ad48-fe6fe925cb68}">
<property name="frequencyA">
<value>18639.6113</value>
<value>18531.3105</value>
</property>
<property name="qualityA">
<value>0.665137947</value>
<value>0.612698376</value>
</property>
<relationship name="automators">
<destination>{176ce5fd-bd9a-4f4d-b268-933525aef9e9}</destination>
<destination>{ef77220d-a7d7-4d54-8dcf-944b78bb35e6}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{708784d7-20b5-4851-8662-0f31698c1ede}">
@@ -288,46 +321,85 @@
</property>
</object>
<object class="MixerBusFader" id="{b1bca3bf-b929-4df6-97e3-f6f71a39e1a3}" />
<object class="Automator" id="{176ce5fd-bd9a-4f4d-b268-933525aef9e9}">
<object class="AutomationPoint" id="{d8a83c41-4f1f-4c16-87ed-ddd36b77b2ec}">
<property name="position">
<value>0.0014124293785310734</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="AutomationPoint" id="{5e94862b-6568-4993-aedd-96e761bab1ac}">
<property name="position">
<value>0.99576271186440679</value>
</property>
<property name="value">
<value>-80</value>
</property>
</object>
<object class="AutomationPoint" id="{5a8ffdfc-6e10-4e69-946f-a65cf897d904}">
<property name="position">
<value>0.47033898305084748</value>
</property>
<property name="value">
<value>-4</value>
</property>
</object>
<object class="AutomationPoint" id="{66e9a064-bca0-4874-84ff-b3a130e313e6}">
<property name="position">
<value>0.83192090395480223</value>
</property>
<property name="value">
<value>-4.77419281</value>
</property>
</object>
<object class="AutomationPoint" id="{3fde9b62-de8d-4a2d-ba2b-a4bc95c906e3}">
<property name="position">
<value>0.95000000000000007</value>
</property>
<property name="value">
<value>-6</value>
</property>
</object>
<object class="AutomationPoint" id="{4ec125cb-1c5e-4020-9be9-30198f8fd6c5}">
<property name="position">
<value>0.27824858757062149</value>
</property>
<property name="value">
<value>-3</value>
</property>
</object>
<object class="Automator" id="{ef77220d-a7d7-4d54-8dcf-944b78bb35e6}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{25cc5f33-c883-4ce1-8698-ffae1f72eac2}</destination>
<destination>{c34288de-cc2a-4707-8d91-cb28c5aaa82a}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{25cc5f33-c883-4ce1-8698-ffae1f72eac2}">
<object class="AutomationCurve" id="{c34288de-cc2a-4707-8d91-cb28c5aaa82a}">
<relationship name="parameter">
<destination>{bea87185-c91e-4761-96d2-956741335a81}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{247d0b09-0a32-4340-816e-32e41c68fb33}</destination>
<destination>{7abc3eca-aa85-417a-99f4-95547e70e2e8}</destination>
<destination>{b4c69330-1c78-4e53-b067-2aa3e98bb3ea}</destination>
<destination>{79b3df26-3c14-4b93-b831-b010800e8efd}</destination>
<destination>{9d286908-f264-4110-b701-234e12176f12}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{247d0b09-0a32-4340-816e-32e41c68fb33}">
<property name="position">
<value>10</value>
</property>
<property name="value">
<value>20</value>
</property>
</object>
<object class="AutomationPoint" id="{7abc3eca-aa85-417a-99f4-95547e70e2e8}">
<object class="AutomationPoint" id="{79b3df26-3c14-4b93-b831-b010800e8efd}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>14000</value>
<value>18531.3125</value>
</property>
</object>
<object class="AutomationPoint" id="{b4c69330-1c78-4e53-b067-2aa3e98bb3ea}">
<object class="AutomationPoint" id="{9d286908-f264-4110-b701-234e12176f12}">
<property name="position">
<value>2.4435028248587569</value>
<value>1</value>
</property>
<property name="value">
<value>11000</value>
<value>100</value>
</property>
</object>
</objects>
@@ -83,7 +83,7 @@
</object>
<object class="EventMixerMaster" id="{bf293669-c192-4c16-b3eb-e633e8a61947}">
<property name="volume">
<value>-4</value>
<value>-1.5</value>
</property>
<relationship name="effectChain">
<destination>{c8e756d8-4aa5-4827-968e-a6a8faf6e51f}</destination>
@@ -142,8 +142,9 @@
</object>
<object class="MixerBusEffectChain" id="{c8e756d8-4aa5-4827-968e-a6a8faf6e51f}">
<relationship name="effects">
<destination>{24ddcf0f-b660-400b-9b8a-8c033a627f6e}</destination>
<destination>{46ea035a-5885-4b78-b9a0-fdc436e160f9}</destination>
<destination>{6f123a40-1bab-452c-ad98-bc1f3c4f63a9}</destination>
<destination>{24ddcf0f-b660-400b-9b8a-8c033a627f6e}</destination>
<destination>{a638b8d1-a675-46bb-9d40-69f7d05c3f29}</destination>
</relationship>
</object>
@@ -155,6 +156,8 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{73b7117b-4398-4358-beca-5aea810bd3bd}" />
<object class="MixerBusFader" id="{46ea035a-5885-4b78-b9a0-fdc436e160f9}" />
<object class="SpatialiserEffect" id="{6f123a40-1bab-452c-ad98-bc1f3c4f63a9}" />
<object class="ThreeEQEffect" id="{24ddcf0f-b660-400b-9b8a-8c033a627f6e}">
<property name="lowGain">
<value>-14</value>
@@ -166,8 +169,10 @@
<value>2600</value>
</property>
</object>
<object class="MixerBusFader" id="{46ea035a-5885-4b78-b9a0-fdc436e160f9}" />
<object class="PluginEffect" id="{a638b8d1-a675-46bb-9d40-69f7d05c3f29}">
<property name="bypass">
<value>true</value>
</property>
<relationship name="plugin">
<destination>{1fcad231-89bc-4362-a0fa-482565dd94f1}</destination>
</relationship>
@@ -220,7 +225,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -229,7 +233,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -558,7 +561,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -575,7 +577,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{53fe1a4d-3d20-465b-8604-8516be28d18b}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{11157870-d323-4e43-90d5-66ac5587644c}</destination>
</relationship>
@@ -57,7 +57,7 @@
<destination>{692e7fb8-403d-4ed5-99e4-7e138fa06823}</destination>
</relationship>
<relationship name="output">
<destination>{9f27e443-4657-4fe2-9f99-cb50bf4bb534}</destination>
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{b0d3a5ad-8759-4304-af27-29078fab72f3}">
@@ -93,7 +93,7 @@
</object>
<object class="EventMixerMaster" id="{0dea75da-15ee-4954-a6b6-06d02ecb54fe}">
<property name="volume">
<value>5.5</value>
<value>9</value>
</property>
<relationship name="effectChain">
<destination>{6aa72fe9-b31b-4501-91b0-1bf512d6e4fd}</destination>
@@ -99,7 +99,7 @@
<value>4</value>
</property>
<property name="pitch">
<value>1</value>
<value>1.20000005</value>
</property>
<relationship name="fadeInCurve">
<destination>{6908a4d4-9eae-42b6-93a8-37f4450376df}</destination>
@@ -114,7 +114,7 @@
</object>
<object class="EventMixerGroup" id="{78dcdbc3-6f53-46bd-a7ee-60009bd5e30c}">
<property name="volume">
<value>-2.5</value>
<value>-1.5</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -168,6 +168,7 @@
<object class="MixerBusEffectChain" id="{feb1ca6d-fefb-4684-92d6-c9b0ce1533a5}">
<relationship name="effects">
<destination>{117e3cbf-7c62-470d-b558-ecdfdaa506af}</destination>
<destination>{f5fa40f9-c752-4968-8c58-491e2e0f66e2}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{286ba468-24ed-4b8a-96ff-18548cbc6218}" />
@@ -211,4 +212,5 @@
</property>
</object>
<object class="MixerBusFader" id="{117e3cbf-7c62-470d-b558-ecdfdaa506af}" />
<object class="ThreeEQEffect" id="{f5fa40f9-c752-4968-8c58-491e2e0f66e2}" />
</objects>
@@ -127,7 +127,7 @@
</object>
<object class="EventMixerMaster" id="{9b5f73af-4ffb-43a8-a62e-ecc334924a73}">
<property name="volume">
<value>1.5</value>
<value>2.5</value>
</property>
<relationship name="effectChain">
<destination>{dd04184e-53f5-4216-b271-f17a4571bfdc}</destination>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{0a216e45-d0d7-4e23-a60a-72809750fb9f}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{558c7e22-1540-47ed-9dc2-43dac14f00b7}</destination>
</relationship>
@@ -32,7 +32,7 @@
<destination>{8fef264d-1d79-47c9-aa53-a3e9afac3284}</destination>
</relationship>
<relationship name="parameters">
<destination>{255ea619-01c0-4261-9cee-fddfd6c84d3e}</destination>
<destination>{115aaefe-2544-4076-a4c6-bdfdbefd7c61}</destination>
</relationship>
<relationship name="banks">
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
@@ -45,7 +45,8 @@
</object>
<object class="MasterTrack" id="{d8a8f301-5c2e-4d07-8727-d73544ee6a44}">
<relationship name="automationTracks">
<destination>{51e7b6dd-e3ac-424c-9798-496f7438a36a}</destination>
<destination>{6b034181-3a30-4050-96ec-6acb6a9306d9}</destination>
<destination>{0d9e803e-07bf-4e24-b68a-d7e6bb19d519}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{3c7238d8-bccb-417c-9e94-58c53f5ccf20}</destination>
@@ -84,12 +85,15 @@
<destination>{52a14fd2-8c90-459d-b7c1-1a52cc8b6f54}</destination>
</relationship>
</object>
<object class="ParameterProxy" id="{255ea619-01c0-4261-9cee-fddfd6c84d3e}">
<object class="ParameterProxy" id="{115aaefe-2544-4076-a4c6-bdfdbefd7c61}">
<relationship name="preset">
<destination>{552a557b-47ef-4b15-9ea4-9e211ad53d58}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{3c7238d8-bccb-417c-9e94-58c53f5ccf20}">
<relationship name="automators">
<destination>{f2133bef-5624-464b-91a0-5b26b7118bea}</destination>
</relationship>
<relationship name="effectChain">
<destination>{8620dfa3-736f-48d3-9b0b-a02efd2f6063}</destination>
</relationship>
@@ -100,9 +104,14 @@
<destination>{7ddbc64f-5481-4d53-9461-3c0ff7d11aa6}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{51e7b6dd-e3ac-424c-9798-496f7438a36a}">
<object class="AutomationTrack" id="{6b034181-3a30-4050-96ec-6acb6a9306d9}">
<relationship name="automator">
<destination>{4f137190-7ec2-4541-b70a-c1b33491488d}</destination>
<destination>{741d7bac-f479-40c8-adf2-35b99727b934}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{0d9e803e-07bf-4e24-b68a-d7e6bb19d519}">
<relationship name="automator">
<destination>{f2133bef-5624-464b-91a0-5b26b7118bea}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{9f406d5e-2536-4f72-beee-21230e91a9e1}">
@@ -150,11 +159,19 @@
<destination>{f68a02f7-2f70-4dcf-936c-0986c364bb4f}</destination>
</relationship>
</object>
<object class="Automator" id="{f2133bef-5624-464b-91a0-5b26b7118bea}">
<property name="nameOfPropertyBeingAutomated">
<value>volume</value>
</property>
<relationship name="automationCurves">
<destination>{92377245-c68e-4914-92a4-deb11268f5d6}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{8620dfa3-736f-48d3-9b0b-a02efd2f6063}">
<relationship name="effects">
<destination>{1b53c329-4af8-4d6e-abe1-e47ed65cd766}</destination>
<destination>{70704c14-9803-4f04-9fd4-cb5e2bc86349}</destination>
<destination>{89b37723-066d-4d73-a386-f05366655146}</destination>
<destination>{18910b19-dbba-41b6-b9fd-7da6757b6078}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{77e2d59c-2b69-431d-8c6b-822770231f0e}" />
@@ -165,60 +182,121 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{f37e9aa0-3596-41cb-a303-6b9c82fc6597}" />
<object class="AutomationCurve" id="{92377245-c68e-4914-92a4-deb11268f5d6}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{c5f33b8e-5abe-4362-ba74-e105a0dd0ec3}</destination>
<destination>{27ccd637-5fd7-4cd1-a27f-b9dcf20fd80a}</destination>
<destination>{a85879fc-951b-4d57-b1a4-17f53ebd3d0b}</destination>
<destination>{5279e7e2-cc6e-4aec-8592-04cd463b8820}</destination>
<destination>{34d49f84-07d3-434f-808a-86fc73849f32}</destination>
</relationship>
</object>
<object class="MixerBusFader" id="{1b53c329-4af8-4d6e-abe1-e47ed65cd766}" />
<object class="SpatialiserEffect" id="{70704c14-9803-4f04-9fd4-cb5e2bc86349}" />
<object class="MultibandEqEffect" id="{89b37723-066d-4d73-a386-f05366655146}">
<object class="MultibandEqEffect" id="{18910b19-dbba-41b6-b9fd-7da6757b6078}">
<property name="frequencyA">
<value>18639.6113</value>
<value>18919.2676</value>
</property>
<property name="qualityA">
<value>0.665137947</value>
<value>0.696887434</value>
</property>
<relationship name="automators">
<destination>{4f137190-7ec2-4541-b70a-c1b33491488d}</destination>
<destination>{741d7bac-f479-40c8-adf2-35b99727b934}</destination>
</relationship>
</object>
<object class="MixerBusFader" id="{d1e37d12-b067-4d0d-8c26-b4128411d8d7}" />
<object class="Automator" id="{4f137190-7ec2-4541-b70a-c1b33491488d}">
<object class="AutomationPoint" id="{c5f33b8e-5abe-4362-ba74-e105a0dd0ec3}">
<property name="position">
<value>0.0014124293785310734</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="AutomationPoint" id="{27ccd637-5fd7-4cd1-a27f-b9dcf20fd80a}">
<property name="position">
<value>0.51271186440677963</value>
</property>
<property name="value">
<value>-4</value>
</property>
</object>
<object class="AutomationPoint" id="{a85879fc-951b-4d57-b1a4-17f53ebd3d0b}">
<property name="position">
<value>0.87429378531073443</value>
</property>
<property name="value">
<value>-4</value>
</property>
</object>
<object class="AutomationPoint" id="{5279e7e2-cc6e-4aec-8592-04cd463b8820}">
<property name="position">
<value>1</value>
</property>
<property name="value">
<value>-80</value>
</property>
</object>
<object class="AutomationPoint" id="{34d49f84-07d3-434f-808a-86fc73849f32}">
<property name="position">
<value>0.96751412429378536</value>
</property>
<property name="value">
<value>-6.42857361</value>
</property>
</object>
<object class="Automator" id="{741d7bac-f479-40c8-adf2-35b99727b934}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{698f0449-e1fe-48ef-97f7-6de126e37246}</destination>
<destination>{3f60ef63-0c21-4766-a710-0a2db675897d}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{698f0449-e1fe-48ef-97f7-6de126e37246}">
<object class="AutomationCurve" id="{3f60ef63-0c21-4766-a710-0a2db675897d}">
<relationship name="parameter">
<destination>{552a557b-47ef-4b15-9ea4-9e211ad53d58}</destination>
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{90ad86a1-5eb9-4da0-8cb2-16bd883f4f23}</destination>
<destination>{caa8cd44-a042-4d37-81a9-f5f6d0246fbc}</destination>
<destination>{9760fec9-14dc-4227-bb8f-f6040105ee7a}</destination>
<destination>{7d08379e-c956-4aa0-ab1b-065fde0b1355}</destination>
<destination>{1401584a-4ef8-4d6a-a4a1-171fe967c170}</destination>
<destination>{db1a0117-621b-47a9-92df-c4409edfef4b}</destination>
<destination>{05152a18-a6f6-4fa6-837a-46cb7dd0bd32}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{90ad86a1-5eb9-4da0-8cb2-16bd883f4f23}">
<object class="AutomationPoint" id="{7d08379e-c956-4aa0-ab1b-065fde0b1355}">
<property name="position">
<value>10</value>
<value>0.00061793785310734458</value>
</property>
<property name="value">
<value>18000</value>
</property>
</object>
<object class="AutomationPoint" id="{1401584a-4ef8-4d6a-a4a1-171fe967c170}">
<property name="position">
<value>1</value>
</property>
<property name="value">
<value>20</value>
</property>
</object>
<object class="AutomationPoint" id="{caa8cd44-a042-4d37-81a9-f5f6d0246fbc}">
<object class="AutomationPoint" id="{db1a0117-621b-47a9-92df-c4409edfef4b}">
<property name="position">
<value>0</value>
<value>0.52039194915254239</value>
</property>
<property name="value">
<value>14000</value>
<value>1800</value>
</property>
</object>
<object class="AutomationPoint" id="{9760fec9-14dc-4227-bb8f-f6040105ee7a}">
<object class="AutomationPoint" id="{05152a18-a6f6-4fa6-837a-46cb7dd0bd32}">
<property name="position">
<value>3</value>
<value>0.92434675141242939</value>
</property>
<property name="value">
<value>140</value>
<value>174.570099</value>
</property>
</object>
</objects>
@@ -114,7 +114,7 @@
</object>
<object class="EventMixerGroup" id="{3b153e8f-b75d-4c50-a526-327157578375}">
<property name="volume">
<value>-1</value>
<value>1.5</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -76,6 +76,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{6b19d15c-39e6-4ed3-84bf-8813dd7dc014}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{e85b74a4-cfc3-4199-895f-31a223c7de34}</destination>
</relationship>
@@ -108,7 +111,7 @@
</object>
<object class="EventMixerGroup" id="{24f7438c-1a29-4f87-a357-1bc18f9783ae}">
<property name="volume">
<value>-5</value>
<value>-2</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -95,6 +95,7 @@
<property name="timelockedOffset">
<value>0.10000000000000001</value>
</property>
<property name="name" />
<relationship name="fadeOutCurve">
<destination>{742f255b-f508-45a9-8f66-816980083ecb}</destination>
</relationship>
@@ -113,9 +113,6 @@
</relationship>
</object>
<object class="EventMixerGroup" id="{a1670bef-0262-4ef7-9fd8-d8ad4cd3d03a}">
<property name="volume">
<value>-3.5</value>
</property>
<property name="name">
<value>Audio 1</value>
</property>
@@ -37,6 +37,7 @@
<relationship name="parameters">
<destination>{94ac9330-6c0b-421a-b3ab-8fe75d998e5d}</destination>
<destination>{117ce9aa-a267-47a1-b0ef-0042e96b99a8}</destination>
<destination>{a40f0b2c-0370-4e3d-9c74-47050190f5f5}</destination>
</relationship>
<relationship name="banks">
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
@@ -53,6 +54,8 @@
<destination>{cdc729c8-c09f-468e-9dcc-72f1e6552fe2}</destination>
<destination>{815e101a-1333-434a-97ef-f8eb80b95534}</destination>
<destination>{8db41640-f367-4bbb-9e09-4809b8f0e678}</destination>
<destination>{f07e2a33-460a-4973-9504-8b02e2cce618}</destination>
<destination>{c630ba79-e593-44e8-9a20-2e4710e84255}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{11d0567a-a4de-4fe0-9531-f883ee95423b}</destination>
@@ -128,10 +131,18 @@
<destination>{7f93562b-4c20-4f1d-9c68-6a145d8afb6d}</destination>
</relationship>
</object>
<object class="ParameterProxy" id="{a40f0b2c-0370-4e3d-9c74-47050190f5f5}">
<relationship name="preset">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{11d0567a-a4de-4fe0-9531-f883ee95423b}">
<property name="volume">
<value>7</value>
</property>
<relationship name="automators">
<destination>{9cef75d0-debe-499b-8dce-fa6ecc882daf}</destination>
</relationship>
<relationship name="effectChain">
<destination>{26251485-8b8f-4259-bc84-5fbf400ec338}</destination>
</relationship>
@@ -162,6 +173,16 @@
<destination>{53d6ae4c-b83a-45b6-9882-9a49c6058894}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{f07e2a33-460a-4973-9504-8b02e2cce618}">
<relationship name="automator">
<destination>{773f3ca5-9da0-4e4e-8522-0e326a1fc7ae}</destination>
</relationship>
</object>
<object class="AutomationTrack" id="{c630ba79-e593-44e8-9a20-2e4710e84255}">
<relationship name="automator">
<destination>{9cef75d0-debe-499b-8dce-fa6ecc882daf}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{392615ab-44e1-4a76-8ae4-a9e76cecd6b1}">
<relationship name="effects">
<destination>{88237cff-aaed-4f6f-8bfe-40cd7549839d}</destination>
@@ -328,12 +349,21 @@
<destination>{11d0567a-a4de-4fe0-9531-f883ee95423b}</destination>
</relationship>
</object>
<object class="Automator" id="{9cef75d0-debe-499b-8dce-fa6ecc882daf}">
<property name="nameOfPropertyBeingAutomated">
<value>volume</value>
</property>
<relationship name="automationCurves">
<destination>{ff5c2573-2670-4d3f-9a62-46c0a6cddaad}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{26251485-8b8f-4259-bc84-5fbf400ec338}">
<relationship name="effects">
<destination>{33b696f1-4bf9-4cf4-8d5f-acc10c50f725}</destination>
<destination>{a50ed96a-16db-4201-bee1-584b749a7936}</destination>
<destination>{f4ab1895-39a2-462a-bbd7-15a15bdb7779}</destination>
<destination>{a309065e-049c-4868-8c92-9e24a5553fef}</destination>
<destination>{d1653908-e309-4a86-95eb-e76b2e63dadf}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{879c2395-1d4e-48b9-b5b8-7a75689222b5}" />
@@ -433,6 +463,16 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{2939cb06-da03-4089-9bd0-6a0b951de009}" />
<object class="AutomationCurve" id="{ff5c2573-2670-4d3f-9a62-46c0a6cddaad}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{6320f66f-a9d0-42dc-b246-4d7695ec68ad}</destination>
<destination>{1d83cb29-af27-4fa2-9f11-8a54ee902d9b}</destination>
<destination>{a801353e-0fa9-448d-a0c8-f46b38d439fa}</destination>
</relationship>
</object>
<object class="MixerBusFader" id="{33b696f1-4bf9-4cf4-8d5f-acc10c50f725}" />
<object class="SpatialiserEffect" id="{a50ed96a-16db-4201-bee1-584b749a7936}" />
<object class="ThreeEQEffect" id="{f4ab1895-39a2-462a-bbd7-15a15bdb7779}">
@@ -459,6 +499,17 @@
<destination>{0c3747ea-d726-413e-8f5d-ada9036d8019}</destination>
</relationship>
</object>
<object class="MultibandEqEffect" id="{d1653908-e309-4a86-95eb-e76b2e63dadf}">
<property name="frequencyA">
<value>20000</value>
</property>
<property name="qualityA">
<value>0.680000007</value>
</property>
<relationship name="automators">
<destination>{773f3ca5-9da0-4e4e-8522-0e326a1fc7ae}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{760f4370-fa66-4299-ab80-74c0f7cf474a}">
<property name="position">
<value>866.52313232421875</value>
@@ -550,6 +601,30 @@
</property>
</object>
<object class="MixerBusFader" id="{2da0d540-0e18-4c89-a1d3-8c6bd97b3c03}" />
<object class="AutomationPoint" id="{6320f66f-a9d0-42dc-b246-4d7695ec68ad}">
<property name="position">
<value>0.0042372881355932203</value>
</property>
<property name="value">
<value>10</value>
</property>
</object>
<object class="AutomationPoint" id="{1d83cb29-af27-4fa2-9f11-8a54ee902d9b}">
<property name="position">
<value>1</value>
</property>
<property name="value">
<value>-57.5</value>
</property>
</object>
<object class="AutomationPoint" id="{a801353e-0fa9-448d-a0c8-f46b38d439fa}">
<property name="position">
<value>0.95000000000000007</value>
</property>
<property name="value">
<value>-5</value>
</property>
</object>
<object class="Automator" id="{f1181d82-1315-4d69-a407-c1a4efa1be76}">
<property name="nameOfPropertyBeingAutomated">
<value>midGain</value>
@@ -582,6 +657,14 @@
<destination>{4a84b988-651e-47c2-9619-c3a2e94d8ee4}</destination>
</relationship>
</object>
<object class="Automator" id="{773f3ca5-9da0-4e4e-8522-0e326a1fc7ae}">
<property name="nameOfPropertyBeingAutomated">
<value>frequencyA</value>
</property>
<relationship name="automationCurves">
<destination>{d460001f-3ffd-4ea4-95ae-8daca1747ff0}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{fed213f5-daac-4619-a9ad-a3790f75763a}">
<relationship name="parameter">
<destination>{7f93562b-4c20-4f1d-9c68-6a145d8afb6d}</destination>
@@ -618,6 +701,17 @@
<destination>{858c10cf-c5a9-4cc5-862a-4e5955a961df}</destination>
</relationship>
</object>
<object class="AutomationCurve" id="{d460001f-3ffd-4ea4-95ae-8daca1747ff0}">
<relationship name="parameter">
<destination>{fb894807-eb7f-48db-b3de-e2f5dd3322a2}</destination>
</relationship>
<relationship name="automationPoints">
<destination>{7f4971e6-7b23-4f5a-ac09-0cb4a02aa0f1}</destination>
<destination>{3095880f-8bfc-4ffd-ad76-ace43a94e976}</destination>
<destination>{3a059299-0492-42f9-9f90-796d30715f75}</destination>
<destination>{f6f2003f-5628-4ef9-88a3-2047a01857ce}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{88224bcf-947e-474d-a462-76d928e427e9}">
<property name="position">
<value>-1</value>
@@ -682,4 +776,42 @@
<value>0.280000001</value>
</property>
</object>
<object class="AutomationPoint" id="{7f4971e6-7b23-4f5a-ac09-0cb4a02aa0f1}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>22000</value>
</property>
<property name="curveShape">
<value>-0.00232479558</value>
</property>
</object>
<object class="AutomationPoint" id="{3095880f-8bfc-4ffd-ad76-ace43a94e976}">
<property name="position">
<value>1</value>
</property>
<property name="value">
<value>20</value>
</property>
</object>
<object class="AutomationPoint" id="{3a059299-0492-42f9-9f90-796d30715f75}">
<property name="position">
<value>0.5</value>
</property>
<property name="value">
<value>700</value>
</property>
<property name="curveShape">
<value>-0.383039117</value>
</property>
</object>
<object class="AutomationPoint" id="{f6f2003f-5628-4ef9-88a3-2047a01857ce}">
<property name="position">
<value>0.96999999999999997</value>
</property>
<property name="value">
<value>70</value>
</property>
</object>
</objects>
@@ -87,7 +87,7 @@
</object>
<object class="EventMixerMaster" id="{09541088-24f8-4cef-ad4f-6e713e129f95}">
<property name="volume">
<value>8</value>
<value>9</value>
</property>
<relationship name="effectChain">
<destination>{0fee013d-657b-47c5-85d1-475195a25a23}</destination>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{a0ab2e33-afbc-46d0-8df8-d9ceb2d24247}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{141dab89-eace-46ee-9818-6c8cfacc624f}</destination>
</relationship>
@@ -56,7 +56,14 @@
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{d0888cde-f7c9-4339-b680-73cee1760b9e}" />
<object class="EventAutomatableProperties" id="{d0888cde-f7c9-4339-b680-73cee1760b9e}">
<property name="minimumDistance">
<value>1.60000002</value>
</property>
<property name="maximumDistance">
<value>5.4000001</value>
</property>
</object>
<object class="MarkerTrack" id="{f23477ce-ca13-4ae6-ae90-daccf4f8b00a}" />
<object class="GroupTrack" id="{80af1455-8374-4c72-a57c-9a0f05ba9f04}">
<relationship name="modules">
@@ -98,7 +105,7 @@
</object>
<object class="EventMixerGroup" id="{11c59dfd-3b93-4ee1-9357-d0bec479e62f}">
<property name="volume">
<value>1.5</value>
<value>2.5</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -58,9 +58,15 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{119efa3e-3705-4571-a633-4f9d11c5de1f}">
<property name="maxVoices">
<value>8</value>
</property>
<property name="maximumDistance">
<value>5</value>
</property>
<property name="triggerCooldown">
<value>180</value>
</property>
</object>
<object class="MarkerTrack" id="{42fbc7a1-9739-4f01-a88a-7f09c330a76a}" />
<object class="GroupTrack" id="{c6acb0b8-a0db-4183-9381-bd10fa338d97}">
@@ -86,6 +92,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{b8602938-875e-4c5f-84a7-d124173e70c0}">
<property name="volume">
<value>3</value>
</property>
<relationship name="effectChain">
<destination>{4d7f704e-a8db-4295-b8b5-149e8ee1a676}</destination>
</relationship>
@@ -101,7 +101,7 @@
</object>
<object class="EventMixerGroup" id="{2c7b3ef1-8f3d-42ef-986d-9f202f2ee952}">
<property name="volume">
<value>5</value>
<value>6</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -61,8 +61,11 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{e23d01ca-9dc7-4a3f-8aa1-c370f97965d5}">
<property name="minimumDistance">
<value>2</value>
</property>
<property name="maximumDistance">
<value>400</value>
<value>75</value>
</property>
</object>
<object class="MarkerTrack" id="{ecba1195-df31-4d27-8002-548a57a90149}" />
@@ -85,6 +88,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{e433b2c3-c785-4a1c-b442-a3852a45dd69}">
<property name="overridingInputFormat">
<value>3</value>
</property>
<relationship name="effectChain">
<destination>{efa933aa-2985-443f-b5a0-84b32a469145}</destination>
</relationship>
@@ -175,6 +181,7 @@
<object class="MixerBusEffectChain" id="{efa933aa-2985-443f-b5a0-84b32a469145}">
<relationship name="effects">
<destination>{d21b3e78-cdee-4351-9bd7-08926907b4fb}</destination>
<destination>{c95160f3-ffe4-4723-912b-5f64c393bf06}</destination>
<destination>{4e321d78-2402-4630-a207-51856415fe4d}</destination>
</relationship>
</object>
@@ -220,7 +227,11 @@
</relationship>
</object>
<object class="MixerBusFader" id="{d21b3e78-cdee-4351-9bd7-08926907b4fb}" />
<object class="SpatialiserEffect" id="{c95160f3-ffe4-4723-912b-5f64c393bf06}" />
<object class="PluginEffect" id="{4e321d78-2402-4630-a207-51856415fe4d}">
<property name="bypass">
<value>true</value>
</property>
<relationship name="plugin">
<destination>{0285f1ec-d6bb-45f9-b911-6e4e07eedc55}</destination>
</relationship>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{00f9be59-1366-4d05-b750-a18d952067e6}">
<property name="volume">
<value>1.5</value>
</property>
<relationship name="effectChain">
<destination>{bd117eeb-34bb-4880-8f14-c2b4499c4ccb}</destination>
</relationship>
@@ -57,7 +57,7 @@
<destination>{181f0012-cfa3-4bea-9f67-c0e07aa6c6c2}</destination>
</relationship>
<relationship name="output">
<destination>{9f27e443-4657-4fe2-9f99-cb50bf4bb534}</destination>
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
</relationship>
</object>
<object class="EventAutomatableProperties" id="{bd51c199-96b8-453e-8673-cfce84c2c90f}">
@@ -89,6 +89,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{7b5a0b07-8fec-4444-9dca-3f0988ab2f8f}">
<property name="volume">
<value>3</value>
</property>
<relationship name="effectChain">
<destination>{2ba58871-ac5a-471c-a556-5d7317fff71b}</destination>
</relationship>
@@ -72,6 +72,9 @@
</relationship>
</object>
<object class="EventMixerMaster" id="{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}">
<property name="volume">
<value>2.5</value>
</property>
<relationship name="effectChain">
<destination>{993e44e3-d0b9-4093-981f-110ce886e606}</destination>
</relationship>
@@ -119,6 +122,7 @@
<object class="MixerBusEffectChain" id="{993e44e3-d0b9-4093-981f-110ce886e606}">
<relationship name="effects">
<destination>{93c81221-aa8f-4921-af09-1dc9bcc5da9a}</destination>
<destination>{16709035-f77c-4f2a-a62b-9ae0993b1a4b}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{89bc593d-edf9-4f15-b1d9-784dceaae559}" />
@@ -138,6 +142,14 @@
</object>
<object class="MixerBusPanner" id="{ee19b10f-0747-4f63-b7ac-cc37bb7d6a23}" />
<object class="MixerBusFader" id="{93c81221-aa8f-4921-af09-1dc9bcc5da9a}" />
<object class="ThreeEQEffect" id="{16709035-f77c-4f2a-a62b-9ae0993b1a4b}">
<property name="lowGain">
<value>-2</value>
</property>
<property name="highGain">
<value>3</value>
</property>
</object>
<object class="AutomationPoint" id="{16eaf956-7e9f-432f-a9a7-a48074dcfd00}">
<property name="position">
<value>1.26</value>
@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="ParameterPreset" id="{35883518-74f9-4941-a6e5-f9ab41a72d4a}">
<property name="name">
<value>RobotEQ</value>
</property>
<relationship name="folder">
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
</relationship>
<relationship name="parameter">
<destination>{552a557b-47ef-4b15-9ea4-9e211ad53d58}</destination>
</relationship>
</object>
<object class="GameParameter" id="{552a557b-47ef-4b15-9ea4-9e211ad53d58}">
<property name="parameterType">
<value>3</value>
</property>
<property name="maximum">
<value>10</value>
</property>
<property name="initialValue">
<value>0</value>
</property>
<property name="isExposedRecursively">
<value>false</value>
</property>
</object>
</objects>
@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="ParameterPreset" id="{bfc4a4d4-d949-43e0-887f-375ff2ccbb43}">
<property name="name">
<value>Server</value>
</property>
<relationship name="folder">
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
</relationship>
<relationship name="parameter">
<destination>{0ddb552a-fc8b-4494-adbd-92aaf9151563}</destination>
</relationship>
</object>
<object class="GameParameter" id="{0ddb552a-fc8b-4494-adbd-92aaf9151563}">
<property name="parameterType">
<value>3</value>
</property>
<property name="maximum">
<value>10</value>
</property>
<property name="initialValue">
<value>0</value>
</property>
<property name="isExposedRecursively">
<value>false</value>
</property>
</object>
</objects>
@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="ParameterPreset" id="{c1ce84df-2b09-47f8-ae4d-7c8f6d0a505e}">
<property name="name">
<value>RobotEQ2</value>
</property>
<relationship name="folder">
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
</relationship>
<relationship name="parameter">
<destination>{bea87185-c91e-4761-96d2-956741335a81}</destination>
</relationship>
</object>
<object class="GameParameter" id="{bea87185-c91e-4761-96d2-956741335a81}">
<property name="parameterType">
<value>3</value>
</property>
<property name="maximum">
<value>10</value>
</property>
<property name="initialValue">
<value>0</value>
</property>
<property name="isExposedRecursively">
<value>false</value>
</property>
</object>
</objects>
@@ -13,7 +13,7 @@
</object>
<object class="GameParameter" id="{fb894807-eb7f-48db-b3de-e2f5dd3322a2}">
<property name="initialValue">
<value>0</value>
<value>1</value>
</property>
<relationship name="modulators">
<destination>{a1523d7a-fecc-424f-8e27-bd2c5cb9a80f}</destination>
@@ -24,7 +24,18 @@
<value>cursorPosition</value>
</property>
<property name="speedAscending">
<value>1.7000000476837158</value>
<value>2.4000000953674316</value>
</property>
<property name="asymmetric">
<value>true</value>
</property>
<relationship name="automators">
<destination>{dc10490b-77d3-481c-a1ea-7217610b7228}</destination>
</relationship>
</object>
<object class="Automator" id="{dc10490b-77d3-481c-a1ea-7217610b7228}">
<property name="nameOfPropertyBeingAutomated">
<value>speedAscending</value>
</property>
</object>
</objects>
+1 -1
View File
@@ -1 +1 @@
{"HighScore":491.0}
{"HighScore":499.0}
+4 -4
View File
@@ -36,6 +36,10 @@
"name": "rq,,tim",
"score": 423.0
},
{
"name": " ",
"score": 413.0
},
{
"name": "Dabest",
"score": 407.0
@@ -55,10 +59,6 @@
{
"name": "destro",
"score": 332.0
},
{
"name": "ftv",
"score": 212.0
}
]
}