kõik vanad helid lisatud, peaaegu kõik esimese iteratsiooni helid on lisatud, auto jaoks üks lisaloogika on tehtud
This commit is contained in:
parent
2e61259ebe
commit
48860cf906
@ -40,6 +40,7 @@ public class CarDrivingRoutine : MonoBehaviour
|
|||||||
targetRotationSpeed = rotationSpeed;
|
targetRotationSpeed = rotationSpeed;
|
||||||
|
|
||||||
CarMovement.start(); //starting the car sound here
|
CarMovement.start(); //starting the car sound here
|
||||||
|
AudioManager.Instance.SetGlobalParameter("CarPassengerLogic", 0.0f); //change the value of the global parameter in FMOD, initial value
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
// Update is called once per frame
|
||||||
|
@ -5,6 +5,7 @@ using Unity.XR.CoreUtils;
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.XR.Content.Interaction;
|
using UnityEngine.XR.Content.Interaction;
|
||||||
using UnityEngine.XR.Interaction.Toolkit;
|
using UnityEngine.XR.Interaction.Toolkit;
|
||||||
|
using FMODUnity;
|
||||||
|
|
||||||
public class PassangerSeat : LocomotionProvider
|
public class PassangerSeat : LocomotionProvider
|
||||||
{
|
{
|
||||||
@ -37,8 +38,8 @@ public class PassangerSeat : LocomotionProvider
|
|||||||
|
|
||||||
Vector3 cameraShift = cameraTransform.localPosition;
|
Vector3 cameraShift = cameraTransform.localPosition;
|
||||||
|
|
||||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorOpen, gameObject);
|
AudioManager.Instance.SetGlobalParameter("CarPassengerLogic", 2.0f); //change the value of the global parameter in FMOD, changed value
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorOpen, gameObject); //play 3d oneshot
|
||||||
currentPassanger = player;
|
currentPassanger = player;
|
||||||
player.transform.SetParent(this.transform);
|
player.transform.SetParent(this.transform);
|
||||||
player.transform.localPosition = -cameraShift;
|
player.transform.localPosition = -cameraShift;
|
||||||
@ -76,8 +77,8 @@ public class PassangerSeat : LocomotionProvider
|
|||||||
if (cameraChild == null) return;
|
if (cameraChild == null) return;
|
||||||
|
|
||||||
Transform cameraTransform = cameraChild.transform.parent.transform;
|
Transform cameraTransform = cameraChild.transform.parent.transform;
|
||||||
|
AudioManager.Instance.SetGlobalParameter("CarPassengerLogic", 0.0f); //change the value of the global parameter in FMOD, initial value
|
||||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorClose, gameObject);
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorClose, gameObject); //play 3d oneshot
|
||||||
|
|
||||||
// Set the player<65>s parent to null (making it part of the scene hierarchy)
|
// Set the player<65>s parent to null (making it part of the scene hierarchy)
|
||||||
currentPassanger.transform.SetParent(null);
|
currentPassanger.transform.SetParent(null);
|
||||||
|
@ -21,15 +21,22 @@ namespace _PROJECT.Components.Drawing
|
|||||||
|
|
||||||
private EventInstance spray_sound;
|
private EventInstance spray_sound;
|
||||||
|
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
spray_sound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.Spray); //creating the instance through AudioManager
|
||||||
|
spray_sound.setParameterByName("SpraySwitcher", 0); //"Spray - 0 in FMOD"
|
||||||
|
spray_sound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(sprayPoint)); //setting the 3D attributes
|
||||||
|
}
|
||||||
|
|
||||||
protected override void OnActivated(ActivateEventArgs args)
|
protected override void OnActivated(ActivateEventArgs args)
|
||||||
{
|
{
|
||||||
base.OnActivated(args);
|
base.OnActivated(args);
|
||||||
StartSpray();
|
StartSpray();
|
||||||
|
|
||||||
spray_sound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.Spray);
|
spray_sound.start(); //starting the instance
|
||||||
spray_sound.setParameterByName("SpraySwitcher", 0); //"Spray - 0 in FMOD"
|
spray_sound.setParameterByName("SpraySwitcher", 0); //"Spray - 0 in FMOD"
|
||||||
spray_sound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(sprayPoint));
|
|
||||||
spray_sound.start();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnDeactivated(DeactivateEventArgs args)
|
protected override void OnDeactivated(DeactivateEventArgs args)
|
||||||
@ -38,7 +45,6 @@ namespace _PROJECT.Components.Drawing
|
|||||||
StopSpray();
|
StopSpray();
|
||||||
|
|
||||||
spray_sound.setParameterByName("SpraySwitcher", 1); //"NoSpray - 1 in FMOD"
|
spray_sound.setParameterByName("SpraySwitcher", 1); //"NoSpray - 1 in FMOD"
|
||||||
spray_sound.release();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private new void Awake()
|
private new void Awake()
|
||||||
@ -47,6 +53,7 @@ namespace _PROJECT.Components.Drawing
|
|||||||
sprayPart.Stop(true, ParticleSystemStopBehavior.StopEmitting);
|
sprayPart.Stop(true, ParticleSystemStopBehavior.StopEmitting);
|
||||||
_isSpraying = false;
|
_isSpraying = false;
|
||||||
_layerMask = 1 << LayerMask.NameToLayer("Paintable");
|
_layerMask = 1 << LayerMask.NameToLayer("Paintable");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void StartSpray()
|
private void StartSpray()
|
||||||
@ -74,7 +81,7 @@ namespace _PROJECT.Components.Drawing
|
|||||||
{
|
{
|
||||||
if (_isSpraying)
|
if (_isSpraying)
|
||||||
{
|
{
|
||||||
spray_sound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(sprayPoint));
|
spray_sound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(sprayPoint)); //changing the attributes
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isSelected || !_isSpraying)
|
if (!isSelected || !_isSpraying)
|
||||||
@ -83,7 +90,6 @@ namespace _PROJECT.Components.Drawing
|
|||||||
sprayPart.Stop(true, ParticleSystemStopBehavior.StopEmitting);
|
sprayPart.Stop(true, ParticleSystemStopBehavior.StopEmitting);
|
||||||
|
|
||||||
spray_sound.setParameterByName("SpraySwitcher", 1); //"NoSpray - 1 in FMOD"
|
spray_sound.setParameterByName("SpraySwitcher", 1); //"NoSpray - 1 in FMOD"
|
||||||
spray_sound.release();
|
|
||||||
|
|
||||||
_isSpraying = false;
|
_isSpraying = false;
|
||||||
return;
|
return;
|
||||||
|
@ -53,6 +53,7 @@ public class ElevatorOuter : MonoBehaviour
|
|||||||
public void OpenDoors()
|
public void OpenDoors()
|
||||||
{
|
{
|
||||||
arrivalBeeper.Play();
|
arrivalBeeper.Play();
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ElevatorArrival, gameObject);
|
||||||
Debug.Log("Outer Doors opened");
|
Debug.Log("Outer Doors opened");
|
||||||
StartCoroutine(MoveDoors(leftDoor, leftDoorOpenPos, rightDoor, rightDoorOpenPos, doorOpenTime));
|
StartCoroutine(MoveDoors(leftDoor, leftDoorOpenPos, rightDoor, rightDoorOpenPos, doorOpenTime));
|
||||||
|
|
||||||
|
@ -25,6 +25,7 @@ public class ContinuoslocomotionConfigurator : MonoBehaviour
|
|||||||
|
|
||||||
private void enableLocomotion()
|
private void enableLocomotion()
|
||||||
{
|
{
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject); //3d oneshot sound
|
||||||
locomotion.enabled = true;
|
locomotion.enabled = true;
|
||||||
turnOnButton.gameObject.SetActive(false);
|
turnOnButton.gameObject.SetActive(false);
|
||||||
turnOffButton.gameObject.SetActive(true);
|
turnOffButton.gameObject.SetActive(true);
|
||||||
@ -32,6 +33,7 @@ public class ContinuoslocomotionConfigurator : MonoBehaviour
|
|||||||
|
|
||||||
private void disableLocomotion()
|
private void disableLocomotion()
|
||||||
{
|
{
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject); //3d oneshot sound
|
||||||
locomotion.enabled = false;
|
locomotion.enabled = false;
|
||||||
turnOnButton.gameObject.SetActive(true);
|
turnOnButton.gameObject.SetActive(true);
|
||||||
turnOffButton.gameObject.SetActive(false);
|
turnOffButton.gameObject.SetActive(false);
|
||||||
|
@ -23,6 +23,7 @@ public class HoverSlideButton : MonoBehaviour, IPointerEnterHandler, IPointerExi
|
|||||||
public void OnPointerEnter(PointerEventData eventData)
|
public void OnPointerEnter(PointerEventData eventData)
|
||||||
{
|
{
|
||||||
SlideToPosition(onPosition);
|
SlideToPosition(onPosition);
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Hover, gameObject); //3d oneshot sound
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnPointerExit(PointerEventData eventData)
|
public void OnPointerExit(PointerEventData eventData)
|
||||||
|
@ -6,6 +6,7 @@ using UnityEngine;
|
|||||||
using UnityEngine.Rendering;
|
using UnityEngine.Rendering;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
using UnityEngine.XR.Interaction.Toolkit;
|
using UnityEngine.XR.Interaction.Toolkit;
|
||||||
|
using FMOD.Studio;
|
||||||
|
|
||||||
public class MenuTeleportButton : MonoBehaviour
|
public class MenuTeleportButton : MonoBehaviour
|
||||||
{
|
{
|
||||||
@ -20,6 +21,15 @@ public class MenuTeleportButton : MonoBehaviour
|
|||||||
private Button button;
|
private Button button;
|
||||||
private TeleportLocation target; // Target teleport position
|
private TeleportLocation target; // Target teleport position
|
||||||
|
|
||||||
|
private EventInstance TeleportingSound;
|
||||||
|
|
||||||
|
private void Awake()
|
||||||
|
{
|
||||||
|
TeleportingSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.Teleport); //initialise the instance
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
button = GetComponent<Button>();
|
button = GetComponent<Button>();
|
||||||
@ -49,6 +59,7 @@ public class MenuTeleportButton : MonoBehaviour
|
|||||||
{
|
{
|
||||||
button.targetGraphic.GetComponent<Image>().sprite = HoverSprite;
|
button.targetGraphic.GetComponent<Image>().sprite = HoverSprite;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetStateDefault()
|
public void SetStateDefault()
|
||||||
@ -90,5 +101,7 @@ public class MenuTeleportButton : MonoBehaviour
|
|||||||
// Refresh the button state
|
// Refresh the button state
|
||||||
button.interactable = false;
|
button.interactable = false;
|
||||||
button.interactable = true;
|
button.interactable = true;
|
||||||
|
|
||||||
|
TeleportingSound.start(); //playing 2d oneshot
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,9 @@ public class Menu : MonoBehaviour
|
|||||||
private bool activated = true;
|
private bool activated = true;
|
||||||
|
|
||||||
|
|
||||||
|
private bool hasFloorButtonSoundInitialized = false;
|
||||||
|
private bool hasMapButtonSoundInitialized = false;
|
||||||
|
|
||||||
|
|
||||||
private void Awake()
|
private void Awake()
|
||||||
{
|
{
|
||||||
@ -84,17 +87,24 @@ public class Menu : MonoBehaviour
|
|||||||
|
|
||||||
private void activateMapPanel()
|
private void activateMapPanel()
|
||||||
{
|
{
|
||||||
|
if (hasMapButtonSoundInitialized) //if statement to check if the button sound instance was initiated in the beginning, thie applies to Map and Floor click sounds.
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject);
|
||||||
|
else
|
||||||
|
hasMapButtonSoundInitialized = true;
|
||||||
|
|
||||||
SetActiveTab(MenuTab.Map);
|
SetActiveTab(MenuTab.Map);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void activateOptionsPanel()
|
private void activateOptionsPanel()
|
||||||
{
|
{
|
||||||
SetActiveTab(MenuTab.Options);
|
SetActiveTab(MenuTab.Options);
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject); //3d oneshot sound
|
||||||
}
|
}
|
||||||
|
|
||||||
private void activateCreditsPanel()
|
private void activateCreditsPanel()
|
||||||
{
|
{
|
||||||
SetActiveTab(MenuTab.Credits);
|
SetActiveTab(MenuTab.Credits);
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject); //3d oneshot sound
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetActiveTab(MenuTab tab)
|
private void SetActiveTab(MenuTab tab)
|
||||||
@ -125,6 +135,8 @@ public class Menu : MonoBehaviour
|
|||||||
|
|
||||||
// Toggle the menu visibility
|
// Toggle the menu visibility
|
||||||
setCanvasVisibility(!canvas.enabled);
|
setCanvasVisibility(!canvas.enabled);
|
||||||
|
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.MapOpen, gameObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Transform updateMenuTransform()
|
public Transform updateMenuTransform()
|
||||||
@ -154,6 +166,7 @@ public class Menu : MonoBehaviour
|
|||||||
}
|
}
|
||||||
private void DisplayFloor1()
|
private void DisplayFloor1()
|
||||||
{
|
{
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject); //3d oneshot sound
|
||||||
//Debug.Log("Dispaling floor 1");
|
//Debug.Log("Dispaling floor 1");
|
||||||
Floor1Panel.gameObject.SetActive(true);
|
Floor1Panel.gameObject.SetActive(true);
|
||||||
Floor2Panel.gameObject.SetActive(false);
|
Floor2Panel.gameObject.SetActive(false);
|
||||||
@ -166,6 +179,13 @@ public class Menu : MonoBehaviour
|
|||||||
}
|
}
|
||||||
private void DisplayFloor2()
|
private void DisplayFloor2()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
if (hasFloorButtonSoundInitialized)
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.Click, gameObject);
|
||||||
|
else
|
||||||
|
hasFloorButtonSoundInitialized = true;
|
||||||
|
|
||||||
//Debug.Log("Dispaling floor 2");
|
//Debug.Log("Dispaling floor 2");
|
||||||
Floor1Panel.gameObject.SetActive(false);
|
Floor1Panel.gameObject.SetActive(false);
|
||||||
Floor2Panel.gameObject.SetActive(true);
|
Floor2Panel.gameObject.SetActive(true);
|
||||||
|
@ -1714,7 +1714,7 @@ RectTransform:
|
|||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 1938936874169646409}
|
- {fileID: 1938936874169646409}
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_RootOrder: 33
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
m_AnchorMax: {x: 0, y: 0}
|
m_AnchorMax: {x: 0, y: 0}
|
||||||
@ -1792,21 +1792,20 @@ MonoBehaviour:
|
|||||||
m_GameObject: {fileID: 8920648335286241163}
|
m_GameObject: {fileID: 8920648335286241163}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: 891e12d2218566241a2acd395d5d3892, type: 3}
|
m_Script: {fileID: 11500000, guid: 1d73fa3572b1bcb498317047ac4154df, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
VRToggle: {fileID: 48284653022802127}
|
VRToggle: {fileID: 48284653022802127}
|
||||||
startPlayingButton: {fileID: 4409105029378525441}
|
startPlayingButton: {fileID: 4409105029378525441}
|
||||||
reloadButton: {fileID: 3248072787155925101}
|
reloadButton: {fileID: 3248072787155925101}
|
||||||
joinMultiplayerButton: {fileID: 7057699864170177475}
|
joinMultiplayerButton: {fileID: 7057699864170177475}
|
||||||
serverListContainer: {fileID: 1182580605524482518}
|
serverListContainer: {fileID: 6604224998162932651}
|
||||||
serverListItemPrefab: {fileID: 8155264290485183093, guid: 161eef8a6244baa46b0988be67d74a08,
|
serverListItemPrefab: {fileID: 8799561993934626415}
|
||||||
type: 3}
|
|
||||||
statusText: {fileID: 2762709333159616741}
|
statusText: {fileID: 2762709333159616741}
|
||||||
quitButton: {fileID: 856744223094475457}
|
quitButton: {fileID: 856744223094475457}
|
||||||
networkDiscovery: {fileID: 0}
|
networkDiscovery: {fileID: 0}
|
||||||
uiCamera: {fileID: 0}
|
uiCamera: {fileID: 0}
|
||||||
placeholderAudioListener: {fileID: 3623653364064856318}
|
placeholderAudioListener: {fileID: 0}
|
||||||
--- !u!81 &3623653364064856318
|
--- !u!81 &3623653364064856318
|
||||||
AudioListener:
|
AudioListener:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -2,12 +2,22 @@ using System.Collections;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Unity.XR.CoreUtils;
|
using Unity.XR.CoreUtils;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
using FMOD.Studio;
|
||||||
|
|
||||||
public class SpaceEnterCollider : MonoBehaviour
|
public class SpaceEnterCollider : MonoBehaviour
|
||||||
{
|
{
|
||||||
public GameObject InstructionText;
|
public GameObject InstructionText;
|
||||||
|
|
||||||
|
private EventInstance PortalEntrance;
|
||||||
|
|
||||||
|
private void Awake()
|
||||||
|
{
|
||||||
|
PortalEntrance = AudioManager.Instance.CreateInstance(FMODEvents.Instance.PortalEnter);
|
||||||
|
}
|
||||||
|
|
||||||
private void OnTriggerEnter(Collider other)
|
private void OnTriggerEnter(Collider other)
|
||||||
{
|
{
|
||||||
|
|
||||||
XROrigin player = other.GetComponent<XROrigin>();
|
XROrigin player = other.GetComponent<XROrigin>();
|
||||||
if (player == null) return;
|
if (player == null) return;
|
||||||
|
|
||||||
@ -30,7 +40,12 @@ public class SpaceEnterCollider : MonoBehaviour
|
|||||||
{
|
{
|
||||||
playerGravity.isInSpace = true;
|
playerGravity.isInSpace = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Debug.Log(other + " entered space.");
|
Debug.Log(other + " entered space.");
|
||||||
|
|
||||||
|
PortalEntrance.start();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnTriggerExit(Collider other)
|
private void OnTriggerExit(Collider other)
|
||||||
@ -42,9 +57,13 @@ public class SpaceEnterCollider : MonoBehaviour
|
|||||||
if (playerGravity != null)
|
if (playerGravity != null)
|
||||||
{
|
{
|
||||||
StartCoroutine(DelayExit(playerGravity));
|
StartCoroutine(DelayExit(playerGravity));
|
||||||
|
|
||||||
//playerGravity.AdjustGravity(new Quaternion()); // Set Gravity back to default
|
//playerGravity.AdjustGravity(new Quaternion()); // Set Gravity back to default
|
||||||
}
|
}
|
||||||
Debug.Log(other + " left space.");
|
Debug.Log(other + " left space.");
|
||||||
|
|
||||||
|
PortalEntrance.start();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerator DelayExit(GravityHandler playerGravity)
|
private IEnumerator DelayExit(GravityHandler playerGravity)
|
||||||
|
@ -70,7 +70,6 @@ public class StencilPortal : MonoBehaviour
|
|||||||
matchOrientation = MatchOrientation.TargetUpAndForward
|
matchOrientation = MatchOrientation.TargetUpAndForward
|
||||||
};
|
};
|
||||||
|
|
||||||
AudioManager.Instance.PlayOneShot3D(FMODEvents.Instance.PortalEnter, targetPosition);
|
|
||||||
|
|
||||||
teleportationProvider.QueueTeleportRequest(request);
|
teleportationProvider.QueueTeleportRequest(request);
|
||||||
|
|
||||||
@ -96,8 +95,6 @@ public class StencilPortal : MonoBehaviour
|
|||||||
if (!_shouldTeleport || IsInvoking(nameof(AllowTeleport))) return;
|
if (!_shouldTeleport || IsInvoking(nameof(AllowTeleport))) return;
|
||||||
if (!other.CompareTag("Player")) return;
|
if (!other.CompareTag("Player")) return;
|
||||||
|
|
||||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.PortalEnter, gameObject);
|
|
||||||
|
|
||||||
Debug.Log(transform.name + " player exited");
|
Debug.Log(transform.name + " player exited");
|
||||||
Invoke(nameof(AllowTeleport), 1f);
|
Invoke(nameof(AllowTeleport), 1f);
|
||||||
}
|
}
|
||||||
|
@ -14,38 +14,42 @@ public class AlarmTrigger : MonoBehaviour
|
|||||||
|
|
||||||
private EventInstance RoomHum;
|
private EventInstance RoomHum;
|
||||||
private EventInstance AlarmSound;
|
private EventInstance AlarmSound;
|
||||||
|
private EventInstance ServerButton;
|
||||||
|
|
||||||
private bool hasAlarm = false;
|
private bool hasAlarm = false;
|
||||||
|
|
||||||
private void Awake()
|
private void Awake()
|
||||||
{
|
{
|
||||||
RoomHum = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomHumming);
|
RoomHum = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomHumming); //initialise the instance
|
||||||
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject));
|
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //make it 3d
|
||||||
|
|
||||||
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm);
|
|
||||||
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject));
|
|
||||||
|
|
||||||
|
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm); //initialise the instance
|
||||||
|
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //make it 3d
|
||||||
|
|
||||||
}
|
}
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
RoomHum.start();
|
||||||
|
//start playing the sound
|
||||||
|
|
||||||
if (PushButton != null)
|
if (PushButton != null)
|
||||||
{
|
{
|
||||||
PushButton.onPress.AddListener(OnButtonPressed);
|
PushButton.onPress.AddListener(OnButtonPressed);
|
||||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, gameObject);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnButtonPressed()
|
void OnButtonPressed()
|
||||||
{
|
{
|
||||||
|
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, gameObject); //3d oneshot instance
|
||||||
Debug.Log("Alarm button Pressed!");
|
Debug.Log("Alarm button Pressed!");
|
||||||
|
|
||||||
if (!AudioManager.IsPlaying(AlarmSound)){ //if alarm isn't already triggered.
|
if (!AudioManager.IsPlaying(AlarmSound)){ //if alarm isn't already triggered.
|
||||||
VentilationSequence.Stop();
|
VentilationSequence.Stop();
|
||||||
AlarmSequence.Play();
|
AlarmSequence.Play();
|
||||||
|
|
||||||
AlarmSound.start();
|
AlarmSound.start(); //start playing the sound
|
||||||
AudioManager.Instance.StopInstance(RoomHum, STOP_MODE.ALLOWFADEOUT);
|
RoomHum.stop(FMOD.Studio.STOP_MODE.ALLOWFADEOUT); //stop playing the sound
|
||||||
|
|
||||||
|
|
||||||
hasAlarm = true;
|
hasAlarm = true;
|
||||||
|
@ -65,11 +65,11 @@ MonoBehaviour:
|
|||||||
m_GameObject: {fileID: 876842842715561968}
|
m_GameObject: {fileID: 876842842715561968}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: 98cc0a7a6d6d7314c8e390e45a9e1483, type: 3}
|
m_Script: {fileID: 11500000, guid: eec8a9cc39cfe9c4a99a2b3cfef89628, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
secret: deltavr
|
secret: deltavr
|
||||||
port: 1
|
port: 2
|
||||||
discoveryInterval: 0
|
discoveryInterval: 0
|
||||||
automatic: 0
|
automatic: 0
|
||||||
--- !u!114 &3580593382982171501
|
--- !u!114 &3580593382982171501
|
||||||
@ -81,7 +81,7 @@ MonoBehaviour:
|
|||||||
m_GameObject: {fileID: 876842842715561968}
|
m_GameObject: {fileID: 876842842715561968}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 11500000, guid: 846c98250226ef949b5c0c499e9334da, type: 3}
|
m_Script: {fileID: 11500000, guid: 3d1d3aad6cea63b43bf2b8374073066f, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
networkDiscovery: {fileID: 4784684551416650039}
|
networkDiscovery: {fileID: 4784684551416650039}
|
||||||
|
@ -73,5 +73,46 @@ PrefabInstance:
|
|||||||
- {fileID: 65702495048144492, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
- {fileID: 65702495048144492, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
||||||
- {fileID: -8700617353114198275, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
- {fileID: -8700617353114198275, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
||||||
m_AddedGameObjects: []
|
m_AddedGameObjects: []
|
||||||
m_AddedComponents: []
|
m_AddedComponents:
|
||||||
|
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: b3d89325bbec0ea45971ae56eceb6a19,
|
||||||
|
type: 3}
|
||||||
|
insertIndex: -1
|
||||||
|
addedObject: {fileID: 6207385351492341968}
|
||||||
m_SourcePrefab: {fileID: 100100000, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
m_SourcePrefab: {fileID: 100100000, guid: b3d89325bbec0ea45971ae56eceb6a19, type: 3}
|
||||||
|
--- !u!1 &9183735049506620104 stripped
|
||||||
|
GameObject:
|
||||||
|
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: b3d89325bbec0ea45971ae56eceb6a19,
|
||||||
|
type: 3}
|
||||||
|
m_PrefabInstance: {fileID: 8336804541285056409}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
--- !u!114 &6207385351492341968
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 9183735049506620104}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 9a6610d2e704f1648819acc8d7460285, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
CollisionTag:
|
||||||
|
EventReference:
|
||||||
|
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: 5
|
||||||
|
File diff suppressed because it is too large
Load Diff
BIN
Assets/_PROJECT/Scenes/DeltaBuilding_base.unity
(Stored with Git LFS)
BIN
Assets/_PROJECT/Scenes/DeltaBuilding_base.unity
(Stored with Git LFS)
Binary file not shown.
@ -158,6 +158,7 @@ public class AudioManager : MonoBehaviour
|
|||||||
EventInstance instance = RuntimeManager.CreateInstance(sound);
|
EventInstance instance = RuntimeManager.CreateInstance(sound);
|
||||||
RuntimeManager.AttachInstanceToGameObject(instance, go);
|
RuntimeManager.AttachInstanceToGameObject(instance, go);
|
||||||
instance.start();
|
instance.start();
|
||||||
|
// instance.release();
|
||||||
|
|
||||||
eventInstances.Add(instance);
|
eventInstances.Add(instance);
|
||||||
return instance;
|
return instance;
|
||||||
@ -168,7 +169,6 @@ public class AudioManager : MonoBehaviour
|
|||||||
if (!instance.isValid()) return;
|
if (!instance.isValid()) return;
|
||||||
instance.stop(mode);
|
instance.stop(mode);
|
||||||
instance.release();
|
instance.release();
|
||||||
eventInstances.Remove(instance);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetParameter(EventInstance instance, string parameterName, float value)
|
public void SetParameter(EventInstance instance, string parameterName, float value)
|
||||||
@ -177,6 +177,11 @@ public class AudioManager : MonoBehaviour
|
|||||||
instance.setParameterByName(parameterName, value);
|
instance.setParameterByName(parameterName, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SetGlobalParameter(string parameterName, float value)
|
||||||
|
{
|
||||||
|
RuntimeManager.StudioSystem.setParameterByName(parameterName, value);
|
||||||
|
}
|
||||||
|
|
||||||
public void InitializeMusic(EventReference musicEventReference)
|
public void InitializeMusic(EventReference musicEventReference)
|
||||||
{
|
{
|
||||||
if (musicEventReference.Guid == nullGuid)
|
if (musicEventReference.Guid == nullGuid)
|
||||||
|
@ -44,6 +44,9 @@ public class FMODEvents : MonoBehaviour
|
|||||||
[field: SerializeField] public EventReference ServerRoomHumming { get; private set; }
|
[field: SerializeField] public EventReference ServerRoomHumming { get; private set; }
|
||||||
[field: SerializeField] public EventReference ServerRoomRackHum { get; private set; }
|
[field: SerializeField] public EventReference ServerRoomRackHum { get; private set; }
|
||||||
|
|
||||||
|
[field: SerializeField] public EventReference Jackal { get; private set; }
|
||||||
|
[field: SerializeField] public EventReference Robotont { get; private set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public static FMODEvents Instance { get; private set; }
|
public static FMODEvents Instance { get; private set; }
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
DeltaVRFMOD/.cache/fsbcache/Desktop/6FF9F17F.fobj
Normal file
BIN
DeltaVRFMOD/.cache/fsbcache/Desktop/6FF9F17F.fobj
Normal file
Binary file not shown.
BIN
DeltaVRFMOD/.cache/fsbcache/Desktop/80714BF7.fobj
Normal file
BIN
DeltaVRFMOD/.cache/fsbcache/Desktop/80714BF7.fobj
Normal file
Binary file not shown.
BIN
DeltaVRFMOD/.cache/{aca59a11-2008-4aa8-b275-81770e355d5b}.pdc
Normal file
BIN
DeltaVRFMOD/.cache/{aca59a11-2008-4aa8-b275-81770e355d5b}.pdc
Normal file
Binary file not shown.
BIN
DeltaVRFMOD/.cache/{bdb574e3-9437-457f-b219-8495dcac5ced}.pdc
Normal file
BIN
DeltaVRFMOD/.cache/{bdb574e3-9437-457f-b219-8495dcac5ced}.pdc
Normal file
Binary file not shown.
BIN
DeltaVRFMOD/Assets/Imported_Ambiences/Robots/242740__marlonhj__engine.wav
(Stored with Git LFS)
Normal file
BIN
DeltaVRFMOD/Assets/Imported_Ambiences/Robots/242740__marlonhj__engine.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
DeltaVRFMOD/Assets/Imported_Ambiences/Robots/fastrobot.mp3
(Stored with Git LFS)
Normal file
BIN
DeltaVRFMOD/Assets/Imported_Ambiences/Robots/fastrobot.mp3
(Stored with Git LFS)
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="EncodableAsset" id="{e3c6f794-3db8-47ae-a806-8bec93c3c713}">
|
||||||
|
<property name="assetPath">
|
||||||
|
<value>Imported_Ambiences/Robots/</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masterAssetFolder">
|
||||||
|
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="AudioFile" id="{aca59a11-2008-4aa8-b275-81770e355d5b}">
|
||||||
|
<property name="assetPath">
|
||||||
|
<value>Imported_Ambiences/Robots/fastrobot.mp3</value>
|
||||||
|
</property>
|
||||||
|
<property name="isStreaming">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyInKHz">
|
||||||
|
<value>48</value>
|
||||||
|
</property>
|
||||||
|
<property name="channelCount">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>370.89600000000002</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masterAssetFolder">
|
||||||
|
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="AudioFile" id="{bdb574e3-9437-457f-b219-8495dcac5ced}">
|
||||||
|
<property name="assetPath">
|
||||||
|
<value>Imported_Ambiences/Robots/242740__marlonhj__engine.wav</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyInKHz">
|
||||||
|
<value>48</value>
|
||||||
|
</property>
|
||||||
|
<property name="channelCount">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3668749999999998</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="masterAssetFolder">
|
||||||
|
<destination>{0fbc34f9-6022-42da-8b3b-f18344a8ea0f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{e4c14d23-8480-46d6-bf40-e1fbb66525f8}</destination>
|
<destination>{e4c14d23-8480-46d6-bf40-e1fbb66525f8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{c3de3536-299f-4b66-aaab-f5b3dfcbb631}" />
|
<object class="EventAutomatableProperties" id="{c3de3536-299f-4b66-aaab-f5b3dfcbb631}" />
|
||||||
|
@ -56,7 +56,11 @@
|
|||||||
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{689cbaa6-886a-4657-9294-080c9ee08914}" />
|
<object class="EventAutomatableProperties" id="{689cbaa6-886a-4657-9294-080c9ee08914}">
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MarkerTrack" id="{7ff0baa5-1939-47e4-b10e-bca463eb8b43}" />
|
<object class="MarkerTrack" id="{7ff0baa5-1939-47e4-b10e-bca463eb8b43}" />
|
||||||
<object class="GroupTrack" id="{7d058373-51ba-4fa7-a831-261289f5d920}">
|
<object class="GroupTrack" id="{7d058373-51ba-4fa7-a831-261289f5d920}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
|
@ -31,6 +31,9 @@
|
|||||||
<relationship name="timeline">
|
<relationship name="timeline">
|
||||||
<destination>{2b142eac-322f-4f76-a86a-f1ca9ba5c8f3}</destination>
|
<destination>{2b142eac-322f-4f76-a86a-f1ca9ba5c8f3}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{4e7afa58-30ab-46b6-8b50-9face3cc0620}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -41,6 +44,9 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MasterTrack" id="{4a44042c-7874-415d-b89f-c13e6bc8c09a}">
|
<object class="MasterTrack" id="{4a44042c-7874-415d-b89f-c13e6bc8c09a}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{6811d507-b094-47e7-ba77-6082f5490cd5}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{f69f400f-af88-493f-b210-3bb9d8e986a5}</destination>
|
<destination>{f69f400f-af88-493f-b210-3bb9d8e986a5}</destination>
|
||||||
<destination>{c0bc19fb-0e40-426b-a2eb-0f538b7b6b92}</destination>
|
<destination>{c0bc19fb-0e40-426b-a2eb-0f538b7b6b92}</destination>
|
||||||
@ -60,11 +66,7 @@
|
|||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{c76e816d-57c8-456c-a329-17eb0603d09f}">
|
<object class="EventAutomatableProperties" id="{c76e816d-57c8-456c-a329-17eb0603d09f}" />
|
||||||
<property name="maximumDistance">
|
|
||||||
<value>30</value>
|
|
||||||
</property>
|
|
||||||
</object>
|
|
||||||
<object class="MarkerTrack" id="{59eaef25-4ee8-45f7-92cb-43f884ffe19f}" />
|
<object class="MarkerTrack" id="{59eaef25-4ee8-45f7-92cb-43f884ffe19f}" />
|
||||||
<object class="GroupTrack" id="{2f703b05-d98b-48c6-936f-3d4f241ec7d1}">
|
<object class="GroupTrack" id="{2f703b05-d98b-48c6-936f-3d4f241ec7d1}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
@ -84,6 +86,11 @@
|
|||||||
<destination>{4c5469cd-3774-4f33-b944-5b53b7633d98}</destination>
|
<destination>{4c5469cd-3774-4f33-b944-5b53b7633d98}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{4e7afa58-30ab-46b6-8b50-9face3cc0620}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{f4119a87-5d77-41a2-9375-dff95d409e9f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{f65a5ce4-c06c-46df-9a06-859ff71e3316}">
|
<object class="EventMixerMaster" id="{f65a5ce4-c06c-46df-9a06-859ff71e3316}">
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{fea1caca-e5b2-4e66-bd5e-33264c5623f8}</destination>
|
<destination>{fea1caca-e5b2-4e66-bd5e-33264c5623f8}</destination>
|
||||||
@ -95,6 +102,11 @@
|
|||||||
<destination>{d96520dd-a6d8-4d99-b42a-7529891db2d4}</destination>
|
<destination>{d96520dd-a6d8-4d99-b42a-7529891db2d4}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{6811d507-b094-47e7-ba77-6082f5490cd5}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{70d2b38f-1513-4925-be36-c452509422d1}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{f69f400f-af88-493f-b210-3bb9d8e986a5}">
|
<object class="TransitionSourceSound" id="{f69f400f-af88-493f-b210-3bb9d8e986a5}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -139,6 +151,9 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{d606328d-d47d-42d7-8be4-de72450a50d8}">
|
<object class="EventMixerGroup" id="{d606328d-d47d-42d7-8be4-de72450a50d8}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>-3.5</value>
|
||||||
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
</property>
|
</property>
|
||||||
@ -171,6 +186,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{fea1caca-e5b2-4e66-bd5e-33264c5623f8}">
|
<object class="MixerBusEffectChain" id="{fea1caca-e5b2-4e66-bd5e-33264c5623f8}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
|
<destination>{1b59e476-ff30-46fa-be6f-43a65cbf5b64}</destination>
|
||||||
<destination>{018473e4-0f0a-45f3-bcda-c733c71ad55e}</destination>
|
<destination>{018473e4-0f0a-45f3-bcda-c733c71ad55e}</destination>
|
||||||
<destination>{02ec219b-94b5-4656-85c6-6e48eb11aa24}</destination>
|
<destination>{02ec219b-94b5-4656-85c6-6e48eb11aa24}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -216,6 +232,17 @@
|
|||||||
<destination>{c0bc19fb-0e40-426b-a2eb-0f538b7b6b92}</destination>
|
<destination>{c0bc19fb-0e40-426b-a2eb-0f538b7b6b92}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="MultibandEqEffect" id="{1b59e476-ff30-46fa-be6f-43a65cbf5b64}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>19834.9668</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.623275876</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{70d2b38f-1513-4925-be36-c452509422d1}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusFader" id="{018473e4-0f0a-45f3-bcda-c733c71ad55e}" />
|
<object class="MixerBusFader" id="{018473e4-0f0a-45f3-bcda-c733c71ad55e}" />
|
||||||
<object class="SpatialiserEffect" id="{02ec219b-94b5-4656-85c6-6e48eb11aa24}" />
|
<object class="SpatialiserEffect" id="{02ec219b-94b5-4656-85c6-6e48eb11aa24}" />
|
||||||
<object class="AutomationPoint" id="{ce3bc340-acd9-4d8e-b42b-a353f4684c95}">
|
<object class="AutomationPoint" id="{ce3bc340-acd9-4d8e-b42b-a353f4684c95}">
|
||||||
@ -257,4 +284,52 @@
|
|||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{154134b3-5549-4ba4-9887-d9e41cda0893}" />
|
<object class="MixerBusFader" id="{154134b3-5549-4ba4-9887-d9e41cda0893}" />
|
||||||
|
<object class="Automator" id="{70d2b38f-1513-4925-be36-c452509422d1}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{4c9a6ce2-d292-4533-9a26-475a01ab863b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{4c9a6ce2-d292-4533-9a26-475a01ab863b}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{f4119a87-5d77-41a2-9375-dff95d409e9f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{40982bf4-cf2c-4ccf-8e98-ba328611a5cd}</destination>
|
||||||
|
<destination>{5c08ea08-b16f-44e9-8cb9-6881410d2341}</destination>
|
||||||
|
<destination>{2a244811-3de9-43f1-9efb-4245e732bab6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{40982bf4-cf2c-4ccf-8e98-ba328611a5cd}">
|
||||||
|
<property name="position">
|
||||||
|
<value>14</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>35</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{5c08ea08-b16f-44e9-8cb9-6881410d2341}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.021528525296017224</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>22000</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="isSCurve">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{2a244811-3de9-43f1-9efb-4245e732bab6}">
|
||||||
|
<property name="position">
|
||||||
|
<value>19.745762711864408</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{9c0ae271-27f8-4329-a0af-abe75088ef22}">
|
<object class="EventAutomatableProperties" id="{9c0ae271-27f8-4329-a0af-abe75088ef22}">
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>5200</value>
|
<value>1000</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{125996c3-1840-4b17-832d-c1554bd09e17}" />
|
<object class="MarkerTrack" id="{125996c3-1840-4b17-832d-c1554bd09e17}" />
|
||||||
|
@ -33,6 +33,9 @@
|
|||||||
<relationship name="timeline">
|
<relationship name="timeline">
|
||||||
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
<destination>{e6b424c4-4c0c-4b73-a48b-c983751d6afb}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{debe10fb-e882-45fe-bfd7-71ba8ff8070d}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -43,6 +46,9 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MasterTrack" id="{53fe6597-f7d5-4812-85fe-dea94f393db7}">
|
<object class="MasterTrack" id="{53fe6597-f7d5-4812-85fe-dea94f393db7}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{9a8a5cab-68ff-4f12-9759-f55629532d2b}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
|
<destination>{eaaabc63-19d4-442e-be7c-83c90b09f9cd}</destination>
|
||||||
<destination>{3ba726b1-1994-4893-8d4f-0c0c4da4dc52}</destination>
|
<destination>{3ba726b1-1994-4893-8d4f-0c0c4da4dc52}</destination>
|
||||||
@ -62,11 +68,7 @@
|
|||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{c0ccf943-b97a-4e00-9551-a070e5c1a421}">
|
<object class="EventAutomatableProperties" id="{c0ccf943-b97a-4e00-9551-a070e5c1a421}" />
|
||||||
<property name="maximumDistance">
|
|
||||||
<value>9</value>
|
|
||||||
</property>
|
|
||||||
</object>
|
|
||||||
<object class="MarkerTrack" id="{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}" />
|
<object class="MarkerTrack" id="{aa5d1c19-51d6-46ff-b6b4-4f51346e9586}" />
|
||||||
<object class="GroupTrack" id="{9f8483f9-5685-4483-82f3-bca2da23c465}">
|
<object class="GroupTrack" id="{9f8483f9-5685-4483-82f3-bca2da23c465}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
@ -108,7 +110,15 @@
|
|||||||
<destination>{663b1d7d-7159-4547-81a6-a4d33b9690be}</destination>
|
<destination>{663b1d7d-7159-4547-81a6-a4d33b9690be}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{debe10fb-e882-45fe-bfd7-71ba8ff8070d}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{0ddb552a-fc8b-4494-adbd-92aaf9151563}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}">
|
<object class="EventMixerMaster" id="{6c5a6cd5-0ccc-458e-a3bd-cc8f730b3bef}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>3.5</value>
|
||||||
|
</property>
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{f8c15184-15a1-4e9d-95b9-c95327204bfe}</destination>
|
<destination>{f8c15184-15a1-4e9d-95b9-c95327204bfe}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -119,6 +129,11 @@
|
|||||||
<destination>{56573da0-0692-40e7-854a-3cbe706d679b}</destination>
|
<destination>{56573da0-0692-40e7-854a-3cbe706d679b}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{9a8a5cab-68ff-4f12-9759-f55629532d2b}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{eaaabc63-19d4-442e-be7c-83c90b09f9cd}">
|
<object class="TransitionSourceSound" id="{eaaabc63-19d4-442e-be7c-83c90b09f9cd}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -202,7 +217,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{48a9f589-80cf-4cee-9075-2fea6e720c8b}">
|
<object class="EventMixerGroup" id="{48a9f589-80cf-4cee-9075-2fea6e720c8b}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>1.5</value>
|
<value>-2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 2</value>
|
<value>Audio 2</value>
|
||||||
@ -237,13 +252,16 @@
|
|||||||
<property name="length">
|
<property name="length">
|
||||||
<value>58.328526077097507</value>
|
<value>58.328526077097507</value>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="pitch">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{68049f79-4a3e-48c1-88c9-b19082a26534}</destination>
|
<destination>{68049f79-4a3e-48c1-88c9-b19082a26534}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{fea2c8c1-3229-41fc-8177-746e813179fc}">
|
<object class="EventMixerGroup" id="{fea2c8c1-3229-41fc-8177-746e813179fc}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-16.5</value>
|
<value>-32</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 3</value>
|
<value>Audio 3</value>
|
||||||
@ -279,6 +297,7 @@
|
|||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}</destination>
|
<destination>{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}</destination>
|
||||||
<destination>{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}</destination>
|
<destination>{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}</destination>
|
||||||
|
<destination>{a8be7296-cd96-4a66-828c-7d59efa175df}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
|
<object class="MixerBusPanner" id="{c7def3cd-df70-4506-8c20-23ece0a0051c}" />
|
||||||
@ -384,6 +403,17 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}" />
|
<object class="MixerBusFader" id="{c9f62d4f-e959-41fc-a944-6b5ef12dcf83}" />
|
||||||
<object class="SpatialiserEffect" id="{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}" />
|
<object class="SpatialiserEffect" id="{a81d6e01-b5b7-4122-a7b5-2cf3ae1fce34}" />
|
||||||
|
<object class="MultibandEqEffect" id="{a8be7296-cd96-4a66-828c-7d59efa175df}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>19428.2324</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.751586199</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
|
<object class="AutomationPoint" id="{da1f824f-2da9-4ec4-8b42-94a37d831442}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -501,4 +531,52 @@
|
|||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{c6d90514-372a-48c9-98c9-73a27f9d8d59}" />
|
<object class="MixerBusFader" id="{c6d90514-372a-48c9-98c9-73a27f9d8d59}" />
|
||||||
|
<object class="Automator" id="{26dbbc01-c12e-4d9b-b27f-ff9ffd43d728}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{913bdbf7-1239-4335-ad62-a8b04885e596}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{913bdbf7-1239-4335-ad62-a8b04885e596}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{0ddb552a-fc8b-4494-adbd-92aaf9151563}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{bead9ac0-0f96-4105-9a36-ee256c84a983}</destination>
|
||||||
|
<destination>{7dacdca6-1032-4ebd-b7e4-4820d41f9cd5}</destination>
|
||||||
|
<destination>{17537533-bbe5-48cc-9159-989579f8a434}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{bead9ac0-0f96-4105-9a36-ee256c84a983}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.043057050592034449</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>19428.2324</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.0126095125</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{7dacdca6-1032-4ebd-b7e4-4820d41f9cd5}">
|
||||||
|
<property name="position">
|
||||||
|
<value>6</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>3000</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.350437999</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{17537533-bbe5-48cc-9159-989579f8a434}">
|
||||||
|
<property name="position">
|
||||||
|
<value>19</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{81c25a42-8a5e-4295-8e79-12095db53616}</destination>
|
<destination>{81c25a42-8a5e-4295-8e79-12095db53616}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{7a4eba1d-e26c-43ab-88c3-074d4470682a}">
|
<object class="EventAutomatableProperties" id="{7a4eba1d-e26c-43ab-88c3-074d4470682a}">
|
||||||
@ -162,6 +162,7 @@
|
|||||||
<object class="MixerBusEffectChain" id="{3a6e1065-3279-4010-b8aa-b9f999f52a45}">
|
<object class="MixerBusEffectChain" id="{3a6e1065-3279-4010-b8aa-b9f999f52a45}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{e48ac6a5-20f5-4616-bd5b-f0b3f22617bb}</destination>
|
<destination>{e48ac6a5-20f5-4616-bd5b-f0b3f22617bb}</destination>
|
||||||
|
<destination>{177723cb-fee9-4a99-9fd5-7f7c9e3286e7}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{33cb75b0-9501-4c0d-a2b7-0d853e34ae53}" />
|
<object class="MixerBusPanner" id="{33cb75b0-9501-4c0d-a2b7-0d853e34ae53}" />
|
||||||
@ -187,4 +188,18 @@
|
|||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{e48ac6a5-20f5-4616-bd5b-f0b3f22617bb}" />
|
<object class="MixerBusFader" id="{e48ac6a5-20f5-4616-bd5b-f0b3f22617bb}" />
|
||||||
|
<object class="MultibandEqEffect" id="{177723cb-fee9-4a99-9fd5-7f7c9e3286e7}">
|
||||||
|
<property name="filterTypeA">
|
||||||
|
<value>8</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>3073.21704</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.644206941</value>
|
||||||
|
</property>
|
||||||
|
<property name="gainA">
|
||||||
|
<value>2.58620739</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{08586293-44c3-4f17-b643-75f1352e19f1}</destination>
|
<destination>{08586293-44c3-4f17-b643-75f1352e19f1}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{71d2e4a7-c047-4d2a-9d97-c23cae3a5511}" />
|
<object class="EventAutomatableProperties" id="{71d2e4a7-c047-4d2a-9d97-c23cae3a5511}" />
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{3e854fc1-ef39-4841-82a1-28333142fdfa}</destination>
|
<destination>{3e854fc1-ef39-4841-82a1-28333142fdfa}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{acc43533-9391-43e2-8a11-816eb640ea7f}" />
|
<object class="EventAutomatableProperties" id="{acc43533-9391-43e2-8a11-816eb640ea7f}" />
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{a3566de7-edf1-49b3-873b-2c846c9be0e9}</destination>
|
<destination>{a3566de7-edf1-49b3-873b-2c846c9be0e9}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{36cf5b1d-e985-4ad5-8b32-79341e66a2ef}" />
|
<object class="EventAutomatableProperties" id="{36cf5b1d-e985-4ad5-8b32-79341e66a2ef}" />
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{c2cc40c9-eaa3-4660-a3b1-c3e295123233}</destination>
|
<destination>{c2cc40c9-eaa3-4660-a3b1-c3e295123233}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{46d55cc2-2c4e-4708-9297-e9a75e5b94b5}">
|
<object class="EventAutomatableProperties" id="{46d55cc2-2c4e-4708-9297-e9a75e5b94b5}">
|
||||||
@ -96,6 +96,9 @@
|
|||||||
<property name="length">
|
<property name="length">
|
||||||
<value>15.6</value>
|
<value>15.6</value>
|
||||||
</property>
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{45b96610-eb1b-41be-94a3-7c781fca6aee}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{c7251312-fc6a-4d41-a27e-7e1a7b042bf1}</destination>
|
<destination>{c7251312-fc6a-4d41-a27e-7e1a7b042bf1}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -125,6 +128,14 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{990fdcfd-199d-4f40-8e0b-73fa7dbc76b9}" />
|
<object class="MixerBusPanner" id="{990fdcfd-199d-4f40-8e0b-73fa7dbc76b9}" />
|
||||||
<object class="MixerBusFader" id="{53d88e58-d862-40ff-976d-892f927b0f30}" />
|
<object class="MixerBusFader" id="{53d88e58-d862-40ff-976d-892f927b0f30}" />
|
||||||
|
<object class="FadeCurve" id="{45b96610-eb1b-41be-94a3-7c781fca6aee}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{541287da-47fa-4a3d-a355-dd8b2667e305}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{463228d9-88ec-458b-95e0-8f9cbb10b947}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{3dec67b2-51e2-484b-b0ba-681eb6cbb85f}">
|
<object class="MixerBusEffectChain" id="{3dec67b2-51e2-484b-b0ba-681eb6cbb85f}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{a8bcfedf-2f62-4b72-99dc-36ea5f6444e8}</destination>
|
<destination>{a8bcfedf-2f62-4b72-99dc-36ea5f6444e8}</destination>
|
||||||
@ -133,5 +144,24 @@
|
|||||||
<object class="MixerBusPanner" id="{52347416-1e35-43a0-9b3d-6f101a50ea4f}" />
|
<object class="MixerBusPanner" id="{52347416-1e35-43a0-9b3d-6f101a50ea4f}" />
|
||||||
<object class="MixerBusFader" id="{34075740-b734-477b-bb4c-4b2d0c0dbf70}" />
|
<object class="MixerBusFader" id="{34075740-b734-477b-bb4c-4b2d0c0dbf70}" />
|
||||||
<object class="SpatialiserEffect" id="{51840173-68f9-449a-9cb8-384a2f4a27f3}" />
|
<object class="SpatialiserEffect" id="{51840173-68f9-449a-9cb8-384a2f4a27f3}" />
|
||||||
|
<object class="AutomationPoint" id="{541287da-47fa-4a3d-a355-dd8b2667e305}">
|
||||||
|
<property name="position">
|
||||||
|
<value>14.300000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.709649742</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{463228d9-88ec-458b-95e0-8f9cbb10b947}">
|
||||||
|
<property name="position">
|
||||||
|
<value>15.6</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MixerBusFader" id="{a8bcfedf-2f62-4b72-99dc-36ea5f6444e8}" />
|
<object class="MixerBusFader" id="{a8bcfedf-2f62-4b72-99dc-36ea5f6444e8}" />
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -0,0 +1,333 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Event" id="{6d9f0cbb-17cd-4070-a5af-f267ad35e82f}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Robotont</value>
|
||||||
|
</property>
|
||||||
|
<property name="outputFormat">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{492f1f1e-6836-4f89-90a3-c9b795482c9f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{ef979fa1-a412-4494-9bb6-9897c030b9c4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="masterTrack">
|
||||||
|
<destination>{8c71cb36-ddb6-4548-afca-be6609196cec}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerInput">
|
||||||
|
<destination>{61ca02c4-0000-4eaa-ac12-afef2e6b92d6}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{add03933-e2e4-443f-bd5d-c33e3c82c9cc}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{168d552a-719d-443e-9cd5-3eea91bf3af0}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="groupTracks">
|
||||||
|
<destination>{38a2df9d-a5bf-492b-a8f8-d7f2ac650890}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{64f635ce-71c2-4610-addc-24535118d759}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{a026769f-81e4-49cd-9c80-ab165c71dad8}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="banks">
|
||||||
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixer" id="{ef979fa1-a412-4494-9bb6-9897c030b9c4}">
|
||||||
|
<relationship name="masterBus">
|
||||||
|
<destination>{83bde981-951f-4702-8e7d-58ba1a0ee518}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MasterTrack" id="{8c71cb36-ddb6-4548-afca-be6609196cec}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{deb76e6a-cab5-4f0d-b038-052dfe68d822}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{da37418f-9e90-4b51-8809-3a145d5a53ff}</destination>
|
||||||
|
<destination>{1da70622-06c8-45b1-88da-3ebe97684e00}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{83bde981-951f-4702-8e7d-58ba1a0ee518}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerInput" id="{61ca02c4-0000-4eaa-ac12-afef2e6b92d6}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{d784dd10-400c-4c39-b844-f7b97c58d265}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{15493bb1-6201-4da8-9d1c-f34ab5ac403a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{add03933-e2e4-443f-bd5d-c33e3c82c9cc}">
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MarkerTrack" id="{168d552a-719d-443e-9cd5-3eea91bf3af0}" />
|
||||||
|
<object class="GroupTrack" id="{38a2df9d-a5bf-492b-a8f8-d7f2ac650890}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{0f08e8a5-f49d-4d1d-98c7-28f5e3534b6d}</destination>
|
||||||
|
<destination>{0da41c60-b1fc-4896-920b-d47ad6bcfec8}</destination>
|
||||||
|
<destination>{f714aed6-2c8b-4781-ab3a-f933784d9f0b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{516d0e7b-90dc-472f-8c81-e74bfee15557}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Timeline" id="{64f635ce-71c2-4610-addc-24535118d759}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{0f08e8a5-f49d-4d1d-98c7-28f5e3534b6d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markers">
|
||||||
|
<destination>{aaacf1f7-f4d8-4a33-b88e-462af1c76639}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{a026769f-81e4-49cd-9c80-ab165c71dad8}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{bea87185-c91e-4761-96d2-956741335a81}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerMaster" id="{83bde981-951f-4702-8e7d-58ba1a0ee518}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{0ee94ee7-173e-4b19-88eb-e557bc685af4}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{c55b4ca9-0ba4-4367-af8f-1e9c69d44770}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{ef979fa1-a412-4494-9bb6-9897c030b9c4}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{deb76e6a-cab5-4f0d-b038-052dfe68d822}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{176ce5fd-bd9a-4f4d-b268-933525aef9e9}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{da37418f-9e90-4b51-8809-3a145d5a53ff}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{1da70622-06c8-45b1-88da-3ebe97684e00}">
|
||||||
|
<property name="start">
|
||||||
|
<value>2.2956426264800864</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{d784dd10-400c-4c39-b844-f7b97c58d265}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{bf2d9816-b0ec-47ce-b923-abd028b6a127}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{15493bb1-6201-4da8-9d1c-f34ab5ac403a}" />
|
||||||
|
<object class="SingleSound" id="{0f08e8a5-f49d-4d1d-98c7-28f5e3534b6d}">
|
||||||
|
<property name="length">
|
||||||
|
<value>370.89600000000002</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{aca59a11-2008-4aa8-b275-81770e355d5b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{0da41c60-b1fc-4896-920b-d47ad6bcfec8}">
|
||||||
|
<property name="length">
|
||||||
|
<value>2.2956426264800864</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{1213db96-add2-47a4-a654-95dcc2e93170}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{f714aed6-2c8b-4781-ab3a-f933784d9f0b}">
|
||||||
|
<property name="length">
|
||||||
|
<value>2.2956426264800869</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeInCurve">
|
||||||
|
<destination>{ddf9aa4c-4569-406c-917a-286cf9dedde0}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{516d0e7b-90dc-472f-8c81-e74bfee15557}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>-27</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{790670b3-b468-44bb-9f1b-2deb9f32fc30}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{d8f58bc6-f056-40e6-b508-9f783a53c8b5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{83bde981-951f-4702-8e7d-58ba1a0ee518}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="LoopRegion" id="{aaacf1f7-f4d8-4a33-b88e-462af1c76639}">
|
||||||
|
<property name="position">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>340</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{64f635ce-71c2-4610-addc-24535118d759}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{168d552a-719d-443e-9cd5-3eea91bf3af0}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="transitionTimeline">
|
||||||
|
<destination>{364817c0-a364-41d0-8364-900be35a2576}</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>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{c55b4ca9-0ba4-4367-af8f-1e9c69d44770}" />
|
||||||
|
<object class="MixerBusFader" id="{bf2d9816-b0ec-47ce-b923-abd028b6a127}" />
|
||||||
|
<object class="TransitionSourceFadeOutCurve" id="{1213db96-add2-47a4-a654-95dcc2e93170}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{708784d7-20b5-4851-8662-0f31698c1ede}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{de16eef0-7738-433c-ba87-f286b78782fa}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="relatedModule">
|
||||||
|
<destination>{f714aed6-2c8b-4781-ab3a-f933784d9f0b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationFadeInCurve" id="{ddf9aa4c-4569-406c-917a-286cf9dedde0}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{090bf90e-d699-402b-bed6-fdfde132518d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{7a818742-e019-4350-b15c-60b39337694b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="relatedModule">
|
||||||
|
<destination>{0da41c60-b1fc-4896-920b-d47ad6bcfec8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{790670b3-b468-44bb-9f1b-2deb9f32fc30}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{b1bca3bf-b929-4df6-97e3-f6f71a39e1a3}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{d8f58bc6-f056-40e6-b508-9f783a53c8b5}" />
|
||||||
|
<object class="TransitionTimeline" id="{364817c0-a364-41d0-8364-900be35a2576}">
|
||||||
|
<property name="length">
|
||||||
|
<value>2.2956426264800864</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{0da41c60-b1fc-4896-920b-d47ad6bcfec8}</destination>
|
||||||
|
<destination>{f714aed6-2c8b-4781-ab3a-f933784d9f0b}</destination>
|
||||||
|
<destination>{da37418f-9e90-4b51-8809-3a145d5a53ff}</destination>
|
||||||
|
<destination>{1da70622-06c8-45b1-88da-3ebe97684e00}</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}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>18639.6113</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.665137947</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{176ce5fd-bd9a-4f4d-b268-933525aef9e9}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{708784d7-20b5-4851-8662-0f31698c1ede}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.25471893</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{de16eef0-7738-433c-ba87-f286b78782fa}">
|
||||||
|
<property name="position">
|
||||||
|
<value>2.2956426264800864</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{090bf90e-d699-402b-bed6-fdfde132518d}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>-0.126200497</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{7a818742-e019-4350-b15c-60b39337694b}">
|
||||||
|
<property name="position">
|
||||||
|
<value>2.2956426264800864</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{b1bca3bf-b929-4df6-97e3-f6f71a39e1a3}" />
|
||||||
|
<object class="Automator" id="{176ce5fd-bd9a-4f4d-b268-933525aef9e9}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{25cc5f33-c883-4ce1-8698-ffae1f72eac2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{25cc5f33-c883-4ce1-8698-ffae1f72eac2}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{bea87185-c91e-4761-96d2-956741335a81}</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>
|
||||||
|
</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}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>14000</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{b4c69330-1c78-4e53-b067-2aa3e98bb3ea}">
|
||||||
|
<property name="position">
|
||||||
|
<value>2.4435028248587569</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>11000</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -31,6 +31,9 @@
|
|||||||
<relationship name="timeline">
|
<relationship name="timeline">
|
||||||
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{19e4f4e1-a183-45db-a5f0-731781dbe470}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
@ -41,9 +44,12 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
|
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{545591e5-e760-4a3b-8842-a47576b46777}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{df15dac3-9896-4ee3-b440-080bd2774b16}</destination>
|
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
|
||||||
<destination>{84519fd3-aa92-408a-819f-c7e32f421300}</destination>
|
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
||||||
@ -57,20 +63,20 @@
|
|||||||
<destination>{754a1107-5283-4e76-8000-9e2a43fe795e}</destination>
|
<destination>{754a1107-5283-4e76-8000-9e2a43fe795e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{1fb9b144-3aba-4f27-adac-3209e96a12a3}">
|
<object class="EventAutomatableProperties" id="{1fb9b144-3aba-4f27-adac-3209e96a12a3}">
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>6.80000019</value>
|
<value>5</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
|
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
|
||||||
<object class="GroupTrack" id="{08383708-a4ec-4ed4-b239-3bc763c83cd0}">
|
<object class="GroupTrack" id="{08383708-a4ec-4ed4-b239-3bc763c83cd0}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
|
||||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
|
||||||
<destination>{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}</destination>
|
<destination>{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}</destination>
|
||||||
|
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
|
||||||
|
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="mixerGroup">
|
<relationship name="mixerGroup">
|
||||||
<destination>{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}</destination>
|
<destination>{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}</destination>
|
||||||
@ -84,6 +90,11 @@
|
|||||||
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
|
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{19e4f4e1-a183-45db-a5f0-731781dbe470}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{776add0b-241b-49e5-acd1-44451b155d9c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
||||||
@ -95,14 +106,19 @@
|
|||||||
<destination>{94eb8669-498d-4ab9-a9ad-ac26c390427a}</destination>
|
<destination>{94eb8669-498d-4ab9-a9ad-ac26c390427a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{df15dac3-9896-4ee3-b440-080bd2774b16}">
|
<object class="AutomationTrack" id="{545591e5-e760-4a3b-8842-a47576b46777}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{2f17962e-8fa8-478d-93c5-8d2832a11033}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="TransitionDestinationSound" id="{84519fd3-aa92-408a-819f-c7e32f421300}">
|
<object class="TransitionDestinationSound" id="{7ab5d73b-9e0b-47cd-a951-4fa77011b413}">
|
||||||
<property name="start">
|
<property name="start">
|
||||||
<value>0.40000000000000002</value>
|
<value>0.16</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -114,22 +130,6 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
|
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
|
||||||
<object class="TransitionSourceSound" id="{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}">
|
|
||||||
<property name="length">
|
|
||||||
<value>0.40000000000000002</value>
|
|
||||||
</property>
|
|
||||||
<relationship name="fadeOutCurve">
|
|
||||||
<destination>{efa8bb86-2024-43c1-be7c-ee8c1e321e45}</destination>
|
|
||||||
</relationship>
|
|
||||||
</object>
|
|
||||||
<object class="TransitionDestinationSound" id="{15f8a430-46d0-42b6-b5ba-b09760398b61}">
|
|
||||||
<property name="length">
|
|
||||||
<value>0.40000000000000002</value>
|
|
||||||
</property>
|
|
||||||
<relationship name="fadeInCurve">
|
|
||||||
<destination>{e26f891b-8c70-4ab3-b685-56c4549bee2e}</destination>
|
|
||||||
</relationship>
|
|
||||||
</object>
|
|
||||||
<object class="SingleSound" id="{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}">
|
<object class="SingleSound" id="{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>58.328526077097507</value>
|
<value>58.328526077097507</value>
|
||||||
@ -138,9 +138,25 @@
|
|||||||
<destination>{68049f79-4a3e-48c1-88c9-b19082a26534}</destination>
|
<destination>{68049f79-4a3e-48c1-88c9-b19082a26534}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="TransitionSourceSound" id="{a3dd34ab-5519-4684-89b1-90ed93b19fc0}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0.16</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{137e4029-8d0d-4168-892b-32591518556c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="TransitionDestinationSound" id="{82c380ac-3a25-4e9b-bc81-6dc156330c85}">
|
||||||
|
<property name="length">
|
||||||
|
<value>0.15999999999999998</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeInCurve">
|
||||||
|
<destination>{f078fc0d-b883-4d15-aaaa-50c2658826b8}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerGroup" id="{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}">
|
<object class="EventMixerGroup" id="{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-4</value>
|
<value>-13.5</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
@ -160,7 +176,7 @@
|
|||||||
<value>3</value>
|
<value>3</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>23.400000000000002</value>
|
<value>50</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="timeline">
|
<relationship name="timeline">
|
||||||
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||||
@ -169,37 +185,38 @@
|
|||||||
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="transitionTimeline">
|
<relationship name="transitionTimeline">
|
||||||
<destination>{f6061a3c-0c28-403e-a689-a7066ac726d9}</destination>
|
<destination>{45e5e68d-9039-4056-927d-69e6bfcf1caa}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
||||||
<destination>{37b2067f-7fb5-4b09-b7b6-4a444510790f}</destination>
|
<destination>{37b2067f-7fb5-4b09-b7b6-4a444510790f}</destination>
|
||||||
|
<destination>{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
|
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
|
||||||
<object class="MixerBusFader" id="{8334671c-21ec-4b08-a65f-03e78fa4f8f7}" />
|
<object class="MixerBusFader" id="{8334671c-21ec-4b08-a65f-03e78fa4f8f7}" />
|
||||||
<object class="TransitionSourceFadeOutCurve" id="{efa8bb86-2024-43c1-be7c-ee8c1e321e45}">
|
<object class="TransitionSourceFadeOutCurve" id="{137e4029-8d0d-4168-892b-32591518556c}">
|
||||||
<relationship name="startPoint">
|
<relationship name="startPoint">
|
||||||
<destination>{b04614d7-84ba-4e05-afb6-41c293a14819}</destination>
|
<destination>{9c5a515b-35dd-4601-89ac-9e74c5694f05}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="endPoint">
|
<relationship name="endPoint">
|
||||||
<destination>{3c732f5d-21f5-4498-8cb5-a13df8fd6c3c}</destination>
|
<destination>{7b0015c3-7fcf-43bc-9586-7cef44d552cb}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="relatedModule">
|
<relationship name="relatedModule">
|
||||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="TransitionDestinationFadeInCurve" id="{e26f891b-8c70-4ab3-b685-56c4549bee2e}">
|
<object class="TransitionDestinationFadeInCurve" id="{f078fc0d-b883-4d15-aaaa-50c2658826b8}">
|
||||||
<relationship name="startPoint">
|
<relationship name="startPoint">
|
||||||
<destination>{cce4694f-95a9-4e69-84ec-2929ecffbb40}</destination>
|
<destination>{00cd5384-21a8-452e-ab9f-b19092091f80}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="endPoint">
|
<relationship name="endPoint">
|
||||||
<destination>{dbeca324-67c4-4acd-8a8a-0db364648b35}</destination>
|
<destination>{9e261d01-9705-444c-bc81-f44c9e53c36a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="relatedModule">
|
<relationship name="relatedModule">
|
||||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{aff0a84f-2382-4445-ab2d-ff9fa115a0be}">
|
<object class="MixerBusEffectChain" id="{aff0a84f-2382-4445-ab2d-ff9fa115a0be}">
|
||||||
@ -208,20 +225,31 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{ffea0a28-2773-40c5-870b-a8ca2347662b}" />
|
<object class="MixerBusPanner" id="{ffea0a28-2773-40c5-870b-a8ca2347662b}" />
|
||||||
<object class="TransitionTimeline" id="{f6061a3c-0c28-403e-a689-a7066ac726d9}">
|
<object class="TransitionTimeline" id="{45e5e68d-9039-4056-927d-69e6bfcf1caa}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0.40000000000000002</value>
|
<value>0.16</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
|
||||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
|
||||||
<destination>{df15dac3-9896-4ee3-b440-080bd2774b16}</destination>
|
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
|
||||||
<destination>{84519fd3-aa92-408a-819f-c7e32f421300}</destination>
|
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
||||||
<object class="SpatialiserEffect" id="{37b2067f-7fb5-4b09-b7b6-4a444510790f}" />
|
<object class="SpatialiserEffect" id="{37b2067f-7fb5-4b09-b7b6-4a444510790f}" />
|
||||||
<object class="AutomationPoint" id="{b04614d7-84ba-4e05-afb6-41c293a14819}">
|
<object class="MultibandEqEffect" id="{ef0ea883-ab18-4fd6-ac69-8b7700ca5a1a}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>19834.9668</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.56048274</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{1ab41ced-f781-4927-9d01-a6c8664036bb}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{9c5a515b-35dd-4601-89ac-9e74c5694f05}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@ -229,18 +257,18 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>0.25471893</value>
|
<value>0.0865036622</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{3c732f5d-21f5-4498-8cb5-a13df8fd6c3c}">
|
<object class="AutomationPoint" id="{7b0015c3-7fcf-43bc-9586-7cef44d552cb}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.40000000000000002</value>
|
<value>0.16</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{cce4694f-95a9-4e69-84ec-2929ecffbb40}">
|
<object class="AutomationPoint" id="{00cd5384-21a8-452e-ab9f-b19092091f80}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
@ -248,16 +276,58 @@
|
|||||||
<value>0</value>
|
<value>0</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>-0.2547189</value>
|
<value>-0.16711843</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{dbeca324-67c4-4acd-8a8a-0db364648b35}">
|
<object class="AutomationPoint" id="{9e261d01-9705-444c-bc81-f44c9e53c36a}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.40000000000000002</value>
|
<value>0.15999999999999998</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{acbfc70b-5c7d-4114-9118-e03998f3e944}" />
|
<object class="MixerBusFader" id="{acbfc70b-5c7d-4114-9118-e03998f3e944}" />
|
||||||
|
<object class="Automator" id="{1ab41ced-f781-4927-9d01-a6c8664036bb}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{c0d95df9-08d7-43b3-8fe6-87eb13ce9842}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{c0d95df9-08d7-43b3-8fe6-87eb13ce9842}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{776add0b-241b-49e5-acd1-44451b155d9c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{42d8fda1-f6cf-4aad-924c-2ff15c1cb5be}</destination>
|
||||||
|
<destination>{368e896c-a599-47a2-878c-a3b34b78e3ff}</destination>
|
||||||
|
<destination>{a4a23916-d858-42cb-9cba-32913d613e01}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{42d8fda1-f6cf-4aad-924c-2ff15c1cb5be}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>22000</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{368e896c-a599-47a2-878c-a3b34b78e3ff}">
|
||||||
|
<property name="position">
|
||||||
|
<value>2.4000000000000004</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>110</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{a4a23916-d858-42cb-9cba-32913d613e01}">
|
||||||
|
<property name="position">
|
||||||
|
<value>4.9081920903954801</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">
|
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>25</value>
|
<value>10</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{43f4114e-560c-428d-bcfc-86bc16733d05}" />
|
<object class="MarkerTrack" id="{43f4114e-560c-428d-bcfc-86bc16733d05}" />
|
||||||
@ -118,7 +118,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{6a600a62-05e9-4e60-93bf-6f9ade070d8d}">
|
<object class="EventMixerGroup" id="{6a600a62-05e9-4e60-93bf-6f9ade070d8d}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>10</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
@ -177,7 +177,11 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{2d6a24ae-e62f-4b2a-8af8-6e288775b456}" />
|
<object class="MixerBusPanner" id="{2d6a24ae-e62f-4b2a-8af8-6e288775b456}" />
|
||||||
<object class="MixerBusFader" id="{f7e6b7ee-9a44-4878-9032-47428fbd1ba7}" />
|
<object class="MixerBusFader" id="{f7e6b7ee-9a44-4878-9032-47428fbd1ba7}" />
|
||||||
<object class="SpatialiserEffect" id="{1fd3b7be-6af1-45bc-8e5c-02c202f6f371}" />
|
<object class="SpatialiserEffect" id="{1fd3b7be-6af1-45bc-8e5c-02c202f6f371}">
|
||||||
|
<property name="bypass">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="AutomationPoint" id="{e16f6514-ce2d-4f9f-bb4b-f8c4de4f1145}">
|
<object class="AutomationPoint" id="{e16f6514-ce2d-4f9f-bb4b-f8c4de4f1145}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
|
@ -56,7 +56,14 @@
|
|||||||
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{b0d3a5ad-8759-4304-af27-29078fab72f3}" />
|
<object class="EventAutomatableProperties" id="{b0d3a5ad-8759-4304-af27-29078fab72f3}">
|
||||||
|
<property name="maxVoices">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MarkerTrack" id="{53e956bd-4923-4293-b607-0d677a9b409d}" />
|
<object class="MarkerTrack" id="{53e956bd-4923-4293-b607-0d677a9b409d}" />
|
||||||
<object class="GroupTrack" id="{269e2f12-aaf5-45f0-987e-fe954401028c}">
|
<object class="GroupTrack" id="{269e2f12-aaf5-45f0-987e-fe954401028c}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
@ -90,7 +97,7 @@
|
|||||||
<object class="MixerBusPanner" id="{692e7fb8-403d-4ed5-99e4-7e138fa06823}" />
|
<object class="MixerBusPanner" id="{692e7fb8-403d-4ed5-99e4-7e138fa06823}" />
|
||||||
<object class="SingleSound" id="{fecbaa45-1223-475f-8e06-a44e262c7923}">
|
<object class="SingleSound" id="{fecbaa45-1223-475f-8e06-a44e262c7923}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0.47000000000000003</value>
|
<value>0.97999999999999998</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="timelockedOffset">
|
<property name="timelockedOffset">
|
||||||
<value>0.5</value>
|
<value>0.5</value>
|
||||||
@ -178,18 +185,18 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{86567622-eff2-4e65-b5cd-55c5cde8621b}">
|
<object class="AutomationPoint" id="{86567622-eff2-4e65-b5cd-55c5cde8621b}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.28000000000000003</value>
|
<value>0.5</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="curveShape">
|
<property name="curveShape">
|
||||||
<value>0.25471893</value>
|
<value>0.0366943926</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="AutomationPoint" id="{306ce6cb-6521-40aa-8daf-4ccb804055a1}">
|
<object class="AutomationPoint" id="{306ce6cb-6521-40aa-8daf-4ccb804055a1}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0.47000000000000003</value>
|
<value>0.97999999999999998</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="value">
|
<property name="value">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
|
@ -0,0 +1,208 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Event" id="{904bd9bc-6376-4493-89b2-7926d5bf9c5b}">
|
||||||
|
<property name="name">
|
||||||
|
<value>PortalEnter2D</value>
|
||||||
|
</property>
|
||||||
|
<property name="outputFormat">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{cfa6b3af-a9c8-4aa7-ba99-290959e4985d}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="masterTrack">
|
||||||
|
<destination>{0ba13fad-ff88-4944-a1b4-05b55f66a7db}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerInput">
|
||||||
|
<destination>{7474ecf5-6dbb-4c39-8bf9-21e4c1a788d8}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{88cc1d43-9b50-4bde-a353-56b0e49c0812}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{11fec4ec-6573-432e-9cb7-c4fc468099f2}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="groupTracks">
|
||||||
|
<destination>{61480339-3ad6-4268-b211-6674373098c1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{dbd1109f-ac97-45f2-95ec-308d6f61692b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="banks">
|
||||||
|
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixer" id="{cfa6b3af-a9c8-4aa7-ba99-290959e4985d}">
|
||||||
|
<relationship name="masterBus">
|
||||||
|
<destination>{dce8c235-b818-4666-be57-f53d485a4c30}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MasterTrack" id="{0ba13fad-ff88-4944-a1b4-05b55f66a7db}">
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{dce8c235-b818-4666-be57-f53d485a4c30}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerInput" id="{7474ecf5-6dbb-4c39-8bf9-21e4c1a788d8}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{b054d434-af8c-4e01-b1ce-bb88f7601e5b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{b883c971-d553-41c9-8d37-3b20092b7741}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{88cc1d43-9b50-4bde-a353-56b0e49c0812}" />
|
||||||
|
<object class="MarkerTrack" id="{11fec4ec-6573-432e-9cb7-c4fc468099f2}" />
|
||||||
|
<object class="GroupTrack" id="{61480339-3ad6-4268-b211-6674373098c1}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{647eeaa4-3772-43a7-bb99-d5df49474a70}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{78dcdbc3-6f53-46bd-a7ee-60009bd5e30c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Timeline" id="{dbd1109f-ac97-45f2-95ec-308d6f61692b}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{647eeaa4-3772-43a7-bb99-d5df49474a70}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerMaster" id="{dce8c235-b818-4666-be57-f53d485a4c30}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{1479d486-01e6-4b3c-a7c3-f85fb11194d0}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{ad11f662-8760-4b09-8e75-1a3357aad700}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{cfa6b3af-a9c8-4aa7-ba99-290959e4985d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{b054d434-af8c-4e01-b1ce-bb88f7601e5b}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{1f4b530e-86be-4b19-9278-78d16be245d2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{b883c971-d553-41c9-8d37-3b20092b7741}" />
|
||||||
|
<object class="MultiSound" id="{647eeaa4-3772-43a7-bb99-d5df49474a70}">
|
||||||
|
<property name="length">
|
||||||
|
<value>1.8600000000000001</value>
|
||||||
|
</property>
|
||||||
|
<property name="volume">
|
||||||
|
<value>4</value>
|
||||||
|
</property>
|
||||||
|
<property name="pitch">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="fadeInCurve">
|
||||||
|
<destination>{6908a4d4-9eae-42b6-93a8-37f4450376df}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{d51ebf82-f228-4537-ba27-124163a55c1e}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="sounds">
|
||||||
|
<destination>{224a499e-71a2-418a-9918-dee42ec5c115}</destination>
|
||||||
|
<destination>{ff48d42e-c986-4432-b685-9133290a55f9}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{78dcdbc3-6f53-46bd-a7ee-60009bd5e30c}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{feb1ca6d-fefb-4684-92d6-c9b0ce1533a5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{286ba468-24ed-4b8a-96ff-18548cbc6218}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{dce8c235-b818-4666-be57-f53d485a4c30}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{1479d486-01e6-4b3c-a7c3-f85fb11194d0}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{ae1ffd2c-68e9-448d-b90a-afbebcbe18bb}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{ad11f662-8760-4b09-8e75-1a3357aad700}" />
|
||||||
|
<object class="MixerBusFader" id="{1f4b530e-86be-4b19-9278-78d16be245d2}" />
|
||||||
|
<object class="FadeCurve" id="{6908a4d4-9eae-42b6-93a8-37f4450376df}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{f9608052-cff8-4b02-a729-8b5fbe7f2e1f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{6f2f2c8f-f241-4856-9325-c1f0af4d2253}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="FadeCurve" id="{d51ebf82-f228-4537-ba27-124163a55c1e}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{77224467-a4db-4578-8dce-f64d4a9a84f6}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{c61a0508-3b54-412a-9875-42608f943da2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SingleSound" id="{224a499e-71a2-418a-9918-dee42ec5c115}">
|
||||||
|
<property name="startOffset">
|
||||||
|
<value>3.5</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{fa6b36ae-1a71-40a0-9f28-10310047a077}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SingleSound" id="{ff48d42e-c986-4432-b685-9133290a55f9}">
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{8bcca29f-d9da-48e0-8ec3-f564cbe2ad28}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{feb1ca6d-fefb-4684-92d6-c9b0ce1533a5}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{117e3cbf-7c62-470d-b558-ecdfdaa506af}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{286ba468-24ed-4b8a-96ff-18548cbc6218}" />
|
||||||
|
<object class="MixerBusFader" id="{ae1ffd2c-68e9-448d-b90a-afbebcbe18bb}" />
|
||||||
|
<object class="AutomationPoint" id="{f9608052-cff8-4b02-a729-8b5fbe7f2e1f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>-0.2547189</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{6f2f2c8f-f241-4856-9325-c1f0af4d2253}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.20000000000000004</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{77224467-a4db-4578-8dce-f64d4a9a84f6}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.50000000000000022</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.25471893</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{c61a0508-3b54-412a-9875-42608f943da2}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.8599999999999999</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{117e3cbf-7c62-470d-b558-ecdfdaa506af}" />
|
||||||
|
</objects>
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{9d17d214-c9f0-4694-8e50-2d018d3a3f11}</destination>
|
<destination>{9d17d214-c9f0-4694-8e50-2d018d3a3f11}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{42b42f05-1d56-4a68-8844-9072bffb593f}" />
|
<object class="EventAutomatableProperties" id="{42b42f05-1d56-4a68-8844-9072bffb593f}" />
|
||||||
|
@ -0,0 +1,224 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Event" id="{9867565d-52c3-40cf-89d0-4040b1498ce2}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Jackal</value>
|
||||||
|
</property>
|
||||||
|
<property name="outputFormat">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{492f1f1e-6836-4f89-90a3-c9b795482c9f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{7ddbc64f-5481-4d53-9461-3c0ff7d11aa6}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="masterTrack">
|
||||||
|
<destination>{d8a8f301-5c2e-4d07-8727-d73544ee6a44}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerInput">
|
||||||
|
<destination>{781da5be-ce3f-4c42-8a3d-bb7fcd8753c7}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{5b6698a7-1b51-4492-923a-5398e5e4dcde}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{f68a02f7-2f70-4dcf-936c-0986c364bb4f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="groupTracks">
|
||||||
|
<destination>{ffe0927d-cc71-4f16-8555-f56d6dfc1b36}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{8fef264d-1d79-47c9-aa53-a3e9afac3284}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameters">
|
||||||
|
<destination>{255ea619-01c0-4261-9cee-fddfd6c84d3e}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="banks">
|
||||||
|
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixer" id="{7ddbc64f-5481-4d53-9461-3c0ff7d11aa6}">
|
||||||
|
<relationship name="masterBus">
|
||||||
|
<destination>{3c7238d8-bccb-417c-9e94-58c53f5ccf20}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MasterTrack" id="{d8a8f301-5c2e-4d07-8727-d73544ee6a44}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{51e7b6dd-e3ac-424c-9798-496f7438a36a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{3c7238d8-bccb-417c-9e94-58c53f5ccf20}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerInput" id="{781da5be-ce3f-4c42-8a3d-bb7fcd8753c7}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{9f406d5e-2536-4f72-beee-21230e91a9e1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{3ee562c3-9870-4f13-b8c4-54fb7e88942a}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{5b6698a7-1b51-4492-923a-5398e5e4dcde}">
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MarkerTrack" id="{f68a02f7-2f70-4dcf-936c-0986c364bb4f}" />
|
||||||
|
<object class="GroupTrack" id="{ffe0927d-cc71-4f16-8555-f56d6dfc1b36}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{78afc2c2-5999-4369-a225-75fdf31c1059}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{0c3a8169-f0eb-4034-bb8d-21ae75c0f937}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Timeline" id="{8fef264d-1d79-47c9-aa53-a3e9afac3284}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{78afc2c2-5999-4369-a225-75fdf31c1059}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markers">
|
||||||
|
<destination>{52a14fd2-8c90-459d-b7c1-1a52cc8b6f54}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{255ea619-01c0-4261-9cee-fddfd6c84d3e}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{552a557b-47ef-4b15-9ea4-9e211ad53d58}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerMaster" id="{3c7238d8-bccb-417c-9e94-58c53f5ccf20}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{8620dfa3-736f-48d3-9b0b-a02efd2f6063}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{77e2d59c-2b69-431d-8c6b-822770231f0e}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{7ddbc64f-5481-4d53-9461-3c0ff7d11aa6}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{51e7b6dd-e3ac-424c-9798-496f7438a36a}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{4f137190-7ec2-4541-b70a-c1b33491488d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{9f406d5e-2536-4f72-beee-21230e91a9e1}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{1a362031-c59e-474c-bd09-1449133f8ed2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{3ee562c3-9870-4f13-b8c4-54fb7e88942a}" />
|
||||||
|
<object class="SingleSound" id="{78afc2c2-5999-4369-a225-75fdf31c1059}">
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3668749999999998</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{bdb574e3-9437-457f-b219-8495dcac5ced}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{0c3a8169-f0eb-4034-bb8d-21ae75c0f937}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>-25</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{1271a60d-b912-40bb-aca7-b0ac077bcf78}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{f37e9aa0-3596-41cb-a303-6b9c82fc6597}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{3c7238d8-bccb-417c-9e94-58c53f5ccf20}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="LoopRegion" id="{52a14fd2-8c90-459d-b7c1-1a52cc8b6f54}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3668749999999998</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{8fef264d-1d79-47c9-aa53-a3e9afac3284}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTrack">
|
||||||
|
<destination>{f68a02f7-2f70-4dcf-936c-0986c364bb4f}</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>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{77e2d59c-2b69-431d-8c6b-822770231f0e}" />
|
||||||
|
<object class="MixerBusFader" id="{1a362031-c59e-474c-bd09-1449133f8ed2}" />
|
||||||
|
<object class="MixerBusEffectChain" id="{1271a60d-b912-40bb-aca7-b0ac077bcf78}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{d1e37d12-b067-4d0d-8c26-b4128411d8d7}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{f37e9aa0-3596-41cb-a303-6b9c82fc6597}" />
|
||||||
|
<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}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>18639.6113</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.665137947</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{4f137190-7ec2-4541-b70a-c1b33491488d}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{d1e37d12-b067-4d0d-8c26-b4128411d8d7}" />
|
||||||
|
<object class="Automator" id="{4f137190-7ec2-4541-b70a-c1b33491488d}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{698f0449-e1fe-48ef-97f7-6de126e37246}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{698f0449-e1fe-48ef-97f7-6de126e37246}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{552a557b-47ef-4b15-9ea4-9e211ad53d58}</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>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{90ad86a1-5eb9-4da0-8cb2-16bd883f4f23}">
|
||||||
|
<property name="position">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{caa8cd44-a042-4d37-81a9-f5f6d0246fbc}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>14000</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{9760fec9-14dc-4227-bb8f-f6040105ee7a}">
|
||||||
|
<property name="position">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>140</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -53,10 +53,14 @@
|
|||||||
<destination>{e5060f5c-c9f8-4a33-beb2-26531b539432}</destination>
|
<destination>{e5060f5c-c9f8-4a33-beb2-26531b539432}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{12329f08-ea3b-40a6-9d1b-8537634a05a5}" />
|
<object class="EventAutomatableProperties" id="{12329f08-ea3b-40a6-9d1b-8537634a05a5}">
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>10</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MarkerTrack" id="{baa432b1-c39f-4ff4-a8b4-a7aca2a93ad8}" />
|
<object class="MarkerTrack" id="{baa432b1-c39f-4ff4-a8b4-a7aca2a93ad8}" />
|
||||||
<object class="GroupTrack" id="{f057247e-b021-4660-a1a2-6a708b5b9f4c}">
|
<object class="GroupTrack" id="{f057247e-b021-4660-a1a2-6a708b5b9f4c}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
@ -90,10 +94,13 @@
|
|||||||
<object class="MixerBusPanner" id="{e5060f5c-c9f8-4a33-beb2-26531b539432}" />
|
<object class="MixerBusPanner" id="{e5060f5c-c9f8-4a33-beb2-26531b539432}" />
|
||||||
<object class="SingleSound" id="{df8c9c34-53f3-415f-a785-3575b2066a94}">
|
<object class="SingleSound" id="{df8c9c34-53f3-415f-a785-3575b2066a94}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0.38600000000000001</value>
|
<value>0.376</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="timelockedOffset">
|
<property name="timelockedOffset">
|
||||||
<value>0.070000000000000007</value>
|
<value>0.080000000000000016</value>
|
||||||
|
</property>
|
||||||
|
<property name="pitch">
|
||||||
|
<value>-2.20000005</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="audioFile">
|
<relationship name="audioFile">
|
||||||
<destination>{4e9f4162-c020-48d3-90aa-c93f7a4d8b73}</destination>
|
<destination>{4e9f4162-c020-48d3-90aa-c93f7a4d8b73}</destination>
|
||||||
@ -101,7 +108,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{24f7438c-1a29-4f87-a357-1bc18f9783ae}">
|
<object class="EventMixerGroup" id="{24f7438c-1a29-4f87-a357-1bc18f9783ae}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>-4</value>
|
<value>2</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{3e919760-3b6c-4fc0-a0f1-f08423835bd5}</destination>
|
<destination>{3e919760-3b6c-4fc0-a0f1-f08423835bd5}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{06b0ec78-2fe3-45e0-b507-c537fb054491}" />
|
<object class="EventAutomatableProperties" id="{06b0ec78-2fe3-45e0-b507-c537fb054491}" />
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameters">
|
<relationship name="parameters">
|
||||||
<destination>{052e1f9c-5b6f-476b-946d-b2bdcdc8f8eb}</destination>
|
<destination>{052e1f9c-5b6f-476b-946d-b2bdcdc8f8eb}</destination>
|
||||||
|
<destination>{9abe2acc-a8b4-4415-840b-2ac27847b4ff}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="banks">
|
<relationship name="banks">
|
||||||
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||||
@ -46,6 +47,9 @@
|
|||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MasterTrack" id="{cd01f012-7f74-4693-8f68-395acd8b0d35}">
|
<object class="MasterTrack" id="{cd01f012-7f74-4693-8f68-395acd8b0d35}">
|
||||||
|
<relationship name="automationTracks">
|
||||||
|
<destination>{087063af-72f8-4cca-b56a-eda53b878587}</destination>
|
||||||
|
</relationship>
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
<destination>{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}</destination>
|
<destination>{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}</destination>
|
||||||
<destination>{8b5b1e6f-8c65-4fcd-9f8d-3751436c5e74}</destination>
|
<destination>{8b5b1e6f-8c65-4fcd-9f8d-3751436c5e74}</destination>
|
||||||
@ -64,12 +68,12 @@
|
|||||||
<destination>{4aed72c3-b0aa-465c-a3f2-fac44b603e66}</destination>
|
<destination>{4aed72c3-b0aa-465c-a3f2-fac44b603e66}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{7ec75b45-6865-4d1b-bfab-f8e3ca952cf8}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{c49501f3-10eb-4bdd-b904-e7e6710c1d15}">
|
<object class="EventAutomatableProperties" id="{c49501f3-10eb-4bdd-b904-e7e6710c1d15}">
|
||||||
<property name="maximumDistance">
|
<property name="maximumDistance">
|
||||||
<value>45</value>
|
<value>40</value>
|
||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MarkerTrack" id="{a26ae91a-1441-4797-a642-069d624e022f}" />
|
<object class="MarkerTrack" id="{a26ae91a-1441-4797-a642-069d624e022f}" />
|
||||||
@ -114,6 +118,11 @@
|
|||||||
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="ParameterProxy" id="{9abe2acc-a8b4-4415-840b-2ac27847b4ff}">
|
||||||
|
<relationship name="preset">
|
||||||
|
<destination>{8d183079-30c4-4cbb-837b-5db8c493ed3b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="EventMixerMaster" id="{783c2004-c047-4bf0-a1b5-05f363b1ec24}">
|
<object class="EventMixerMaster" id="{783c2004-c047-4bf0-a1b5-05f363b1ec24}">
|
||||||
<relationship name="effectChain">
|
<relationship name="effectChain">
|
||||||
<destination>{5ac38b31-98b7-473d-8882-03fa4bb5da28}</destination>
|
<destination>{5ac38b31-98b7-473d-8882-03fa4bb5da28}</destination>
|
||||||
@ -125,6 +134,11 @@
|
|||||||
<destination>{a46060a4-1e30-4c43-917b-0a619b4ea9a0}</destination>
|
<destination>{a46060a4-1e30-4c43-917b-0a619b4ea9a0}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="AutomationTrack" id="{087063af-72f8-4cca-b56a-eda53b878587}">
|
||||||
|
<relationship name="automator">
|
||||||
|
<destination>{6d4159b3-ea9e-461b-ba14-b1be5405eb95}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="TransitionSourceSound" id="{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}">
|
<object class="TransitionSourceSound" id="{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}">
|
||||||
<property name="length">
|
<property name="length">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -185,6 +199,9 @@
|
|||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{091c9450-a21c-4ebf-b2a1-80de796c850d}">
|
<object class="EventMixerGroup" id="{091c9450-a21c-4ebf-b2a1-80de796c850d}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
</property>
|
</property>
|
||||||
@ -304,6 +321,8 @@
|
|||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{17b6686c-b69a-4290-9a34-f1615792f5c3}</destination>
|
<destination>{17b6686c-b69a-4290-9a34-f1615792f5c3}</destination>
|
||||||
<destination>{fe7fa346-05af-4c7e-900c-1772749be6a1}</destination>
|
<destination>{fe7fa346-05af-4c7e-900c-1772749be6a1}</destination>
|
||||||
|
<destination>{c43e9d3e-ce29-4e53-8209-26b736863d02}</destination>
|
||||||
|
<destination>{5fb15b4e-b0d1-446c-a047-578140b7a045}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{f8e924b7-6601-4d1d-8401-1707942b410f}" />
|
<object class="MixerBusPanner" id="{f8e924b7-6601-4d1d-8401-1707942b410f}" />
|
||||||
@ -397,6 +416,28 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{17b6686c-b69a-4290-9a34-f1615792f5c3}" />
|
<object class="MixerBusFader" id="{17b6686c-b69a-4290-9a34-f1615792f5c3}" />
|
||||||
<object class="SpatialiserEffect" id="{fe7fa346-05af-4c7e-900c-1772749be6a1}" />
|
<object class="SpatialiserEffect" id="{fe7fa346-05af-4c7e-900c-1772749be6a1}" />
|
||||||
|
<object class="MultibandEqEffect" id="{c43e9d3e-ce29-4e53-8209-26b736863d02}">
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>19428.2324</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityA">
|
||||||
|
<value>0.56048274</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{6d4159b3-ea9e-461b-ba14-b1be5405eb95}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MultibandEqEffect" id="{5fb15b4e-b0d1-446c-a047-578140b7a045}">
|
||||||
|
<property name="filterTypeA">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyE">
|
||||||
|
<value>308.171722</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityE">
|
||||||
|
<value>0.455827594</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="AutomationPoint" id="{ad93b5de-1108-4aeb-871f-59fd1a9529ac}">
|
<object class="AutomationPoint" id="{ad93b5de-1108-4aeb-871f-59fd1a9529ac}">
|
||||||
<property name="position">
|
<property name="position">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -475,4 +516,55 @@
|
|||||||
</property>
|
</property>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusFader" id="{b99da5db-4add-462e-999e-35bad8a56417}" />
|
<object class="MixerBusFader" id="{b99da5db-4add-462e-999e-35bad8a56417}" />
|
||||||
|
<object class="Automator" id="{6d4159b3-ea9e-461b-ba14-b1be5405eb95}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>frequencyA</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{2e2c0b59-cd7c-4f56-a6fb-948fb66056bf}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{2e2c0b59-cd7c-4f56-a6fb-948fb66056bf}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{8d183079-30c4-4cbb-837b-5db8c493ed3b}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{6f324c50-2544-45f2-ae03-c32e6ba77f47}</destination>
|
||||||
|
<destination>{50d95503-71eb-40cd-bf3c-9c81df86ce9c}</destination>
|
||||||
|
<destination>{dd976ac6-fd76-433d-9529-838cfc6b729f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{6f324c50-2544-45f2-ae03-c32e6ba77f47}">
|
||||||
|
<property name="position">
|
||||||
|
<value>26</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>320</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>-0.272252083</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{50d95503-71eb-40cd-bf3c-9c81df86ce9c}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>22000</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="isSCurve">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{dd976ac6-fd76-433d-9529-838cfc6b729f}">
|
||||||
|
<property name="position">
|
||||||
|
<value>39.604519774011301</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{2f60d028-dc8f-45db-ac5b-6e5b1a716e0a}</destination>
|
<destination>{2f60d028-dc8f-45db-ac5b-6e5b1a716e0a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{99e273f5-cb40-4d2e-9e75-e963349aef99}" />
|
<object class="EventAutomatableProperties" id="{99e273f5-cb40-4d2e-9e75-e963349aef99}" />
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{2f42552a-c959-4d41-88be-aa199ef8549a}</destination>
|
<destination>{2f42552a-c959-4d41-88be-aa199ef8549a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{d0888cde-f7c9-4339-b680-73cee1760b9e}" />
|
<object class="EventAutomatableProperties" id="{d0888cde-f7c9-4339-b680-73cee1760b9e}" />
|
||||||
@ -124,10 +124,31 @@
|
|||||||
<object class="MixerBusEffectChain" id="{daf38ec4-dd73-438a-b129-c1b222c62f92}">
|
<object class="MixerBusEffectChain" id="{daf38ec4-dd73-438a-b129-c1b222c62f92}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
<destination>{6aa92297-8f30-489e-98c0-a83c7e44f06c}</destination>
|
<destination>{6aa92297-8f30-489e-98c0-a83c7e44f06c}</destination>
|
||||||
|
<destination>{a7acdfda-8f0c-4dc1-91d1-63487065a22e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{7997311c-d2c7-4700-97ba-4af0a1324cb1}" />
|
<object class="MixerBusPanner" id="{7997311c-d2c7-4700-97ba-4af0a1324cb1}" />
|
||||||
<object class="MixerBusFader" id="{f5390ca8-6654-4519-86e0-acb170f85dca}" />
|
<object class="MixerBusFader" id="{f5390ca8-6654-4519-86e0-acb170f85dca}" />
|
||||||
<object class="SpatialiserEffect" id="{38cb0f3c-9ce1-456c-99a0-59a41fe816e0}" />
|
<object class="SpatialiserEffect" id="{38cb0f3c-9ce1-456c-99a0-59a41fe816e0}" />
|
||||||
<object class="MixerBusFader" id="{6aa92297-8f30-489e-98c0-a83c7e44f06c}" />
|
<object class="MixerBusFader" id="{6aa92297-8f30-489e-98c0-a83c7e44f06c}" />
|
||||||
|
<object class="MultibandEqEffect" id="{a7acdfda-8f0c-4dc1-91d1-63487065a22e}">
|
||||||
|
<property name="filterTypeA">
|
||||||
|
<value>8</value>
|
||||||
|
</property>
|
||||||
|
<property name="filterTypeE">
|
||||||
|
<value>6</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyA">
|
||||||
|
<value>4847.90039</value>
|
||||||
|
</property>
|
||||||
|
<property name="frequencyE">
|
||||||
|
<value>31.5493565</value>
|
||||||
|
</property>
|
||||||
|
<property name="qualityE">
|
||||||
|
<value>0.183724135</value>
|
||||||
|
</property>
|
||||||
|
<property name="gainA">
|
||||||
|
<value>3.10344815</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -56,7 +56,11 @@
|
|||||||
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
<destination>{8431e203-753a-4633-bbee-15f9c2412d0a}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{119efa3e-3705-4571-a633-4f9d11c5de1f}" />
|
<object class="EventAutomatableProperties" id="{119efa3e-3705-4571-a633-4f9d11c5de1f}">
|
||||||
|
<property name="maximumDistance">
|
||||||
|
<value>5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
<object class="MarkerTrack" id="{42fbc7a1-9739-4f01-a88a-7f09c330a76a}" />
|
<object class="MarkerTrack" id="{42fbc7a1-9739-4f01-a88a-7f09c330a76a}" />
|
||||||
<object class="GroupTrack" id="{c6acb0b8-a0db-4183-9381-bd10fa338d97}">
|
<object class="GroupTrack" id="{c6acb0b8-a0db-4183-9381-bd10fa338d97}">
|
||||||
<relationship name="modules">
|
<relationship name="modules">
|
||||||
|
@ -109,7 +109,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="EventMixerGroup" id="{2c7b3ef1-8f3d-42ef-986d-9f202f2ee952}">
|
<object class="EventMixerGroup" id="{2c7b3ef1-8f3d-42ef-986d-9f202f2ee952}">
|
||||||
<property name="volume">
|
<property name="volume">
|
||||||
<value>3.5</value>
|
<value>5</value>
|
||||||
</property>
|
</property>
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<value>Audio 1</value>
|
<value>Audio 1</value>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
<destination>{903e03c7-f297-4004-9b93-556a9754c8af}</destination>
|
<destination>{903e03c7-f297-4004-9b93-556a9754c8af}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="output">
|
<relationship name="output">
|
||||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="EventAutomatableProperties" id="{e1ff85dd-ca10-4184-b907-cebce893b822}" />
|
<object class="EventAutomatableProperties" id="{e1ff85dd-ca10-4184-b907-cebce893b822}" />
|
||||||
|
@ -0,0 +1,193 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="Event" id="{ffebdbfb-a448-48c1-812e-5467298c8408}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Teleport2D</value>
|
||||||
|
</property>
|
||||||
|
<property name="outputFormat">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{28cae957-100d-4d49-9ee5-121fa93125c5}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="masterTrack">
|
||||||
|
<destination>{aa988e9d-5b4c-411f-906a-10e768b7ddc8}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerInput">
|
||||||
|
<destination>{87fc9b34-f7b5-424e-aa91-d31df1a956dc}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automatableProperties">
|
||||||
|
<destination>{995e7f12-6fbf-4e49-ae59-8003cb959e85}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="markerTracks">
|
||||||
|
<destination>{156de665-731c-4ff8-94f4-c5cd8c62bf1c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="groupTracks">
|
||||||
|
<destination>{4e4f6560-1a24-4070-82f1-252d86687191}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="timeline">
|
||||||
|
<destination>{82eea894-fe15-4afd-a7d4-46808de26e2f}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="banks">
|
||||||
|
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixer" id="{28cae957-100d-4d49-9ee5-121fa93125c5}">
|
||||||
|
<relationship name="masterBus">
|
||||||
|
<destination>{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MasterTrack" id="{aa988e9d-5b4c-411f-906a-10e768b7ddc8}">
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerInput" id="{87fc9b34-f7b5-424e-aa91-d31df1a956dc}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{f1c45fd6-6ce5-4be0-b2b7-1fff33454c18}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{7e2ac30b-be63-44ef-a305-8fff647325f1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventAutomatableProperties" id="{995e7f12-6fbf-4e49-ae59-8003cb959e85}" />
|
||||||
|
<object class="MarkerTrack" id="{156de665-731c-4ff8-94f4-c5cd8c62bf1c}" />
|
||||||
|
<object class="GroupTrack" id="{4e4f6560-1a24-4070-82f1-252d86687191}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{c4f26bea-594a-4280-bd10-66db0647f9cf}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixerGroup">
|
||||||
|
<destination>{e9a0794e-5916-4237-8744-198344f7e2d9}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Timeline" id="{82eea894-fe15-4afd-a7d4-46808de26e2f}">
|
||||||
|
<relationship name="modules">
|
||||||
|
<destination>{c4f26bea-594a-4280-bd10-66db0647f9cf}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerMaster" id="{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}">
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{993e44e3-d0b9-4093-981f-110ce886e606}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{89bc593d-edf9-4f15-b1d9-784dceaae559}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="mixer">
|
||||||
|
<destination>{28cae957-100d-4d49-9ee5-121fa93125c5}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{f1c45fd6-6ce5-4be0-b2b7-1fff33454c18}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{eef962dc-3a29-461a-af76-e762e6e47b56}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{7e2ac30b-be63-44ef-a305-8fff647325f1}" />
|
||||||
|
<object class="SingleSound" id="{c4f26bea-594a-4280-bd10-66db0647f9cf}">
|
||||||
|
<property name="length">
|
||||||
|
<value>2.3799999999999999</value>
|
||||||
|
</property>
|
||||||
|
<property name="timelockedOffset">
|
||||||
|
<value>0.35000000000000003</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modulators">
|
||||||
|
<destination>{d56672dc-75af-4bc4-b471-d8e9aec7bc94}</destination>
|
||||||
|
<destination>{6c418d69-b1ab-4753-96d5-3efa759f23ec}</destination>
|
||||||
|
<destination>{33db884e-c6a0-4c46-981d-6c9403bab049}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="fadeOutCurve">
|
||||||
|
<destination>{9b9dded0-6cba-4884-bf7d-171db6a3307e}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="audioFile">
|
||||||
|
<destination>{5328c5d6-44ab-4638-a72d-20743f838f89}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="EventMixerGroup" id="{e9a0794e-5916-4237-8744-198344f7e2d9}">
|
||||||
|
<property name="volume">
|
||||||
|
<value>3.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="name">
|
||||||
|
<value>Audio 1</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="effectChain">
|
||||||
|
<destination>{f515e492-4841-477f-b708-3f6664ec41c9}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="panner">
|
||||||
|
<destination>{ee19b10f-0747-4f63-b7ac-cc37bb7d6a23}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="output">
|
||||||
|
<destination>{153a1be3-dc00-4fcd-94df-e3ad2ef4de1e}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{993e44e3-d0b9-4093-981f-110ce886e606}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{93c81221-aa8f-4921-af09-1dc9bcc5da9a}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{89bc593d-edf9-4f15-b1d9-784dceaae559}" />
|
||||||
|
<object class="MixerBusFader" id="{eef962dc-3a29-461a-af76-e762e6e47b56}" />
|
||||||
|
<object class="RandomizerModulator" id="{d56672dc-75af-4bc4-b471-d8e9aec7bc94}">
|
||||||
|
<property name="nameOfPropertyBeingModulated">
|
||||||
|
<value>pitch</value>
|
||||||
|
</property>
|
||||||
|
<property name="amount">
|
||||||
|
<value>2.5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="RandomizerModulator" id="{6c418d69-b1ab-4753-96d5-3efa759f23ec}">
|
||||||
|
<property name="nameOfPropertyBeingModulated">
|
||||||
|
<value>startOffset</value>
|
||||||
|
</property>
|
||||||
|
<property name="amount">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="RandomizerModulator" id="{33db884e-c6a0-4c46-981d-6c9403bab049}">
|
||||||
|
<property name="nameOfPropertyBeingModulated">
|
||||||
|
<value>volume</value>
|
||||||
|
</property>
|
||||||
|
<property name="amount">
|
||||||
|
<value>0.5</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="FadeCurve" id="{9b9dded0-6cba-4884-bf7d-171db6a3307e}">
|
||||||
|
<relationship name="startPoint">
|
||||||
|
<destination>{6deffd69-ed2a-4972-8cfa-b39f4db544a1}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="endPoint">
|
||||||
|
<destination>{08b5fb93-ab82-49f9-a03b-e5b64157dae2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusEffectChain" id="{f515e492-4841-477f-b708-3f6664ec41c9}">
|
||||||
|
<relationship name="effects">
|
||||||
|
<destination>{87c39274-d260-4d3e-8dfb-6810212ab4af}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusPanner" id="{ee19b10f-0747-4f63-b7ac-cc37bb7d6a23}" />
|
||||||
|
<object class="MixerBusFader" id="{93c81221-aa8f-4921-af09-1dc9bcc5da9a}" />
|
||||||
|
<object class="AutomationPoint" id="{6deffd69-ed2a-4972-8cfa-b39f4db544a1}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.8</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>1</value>
|
||||||
|
</property>
|
||||||
|
<property name="curveShape">
|
||||||
|
<value>0.25471893</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{08b5fb93-ab82-49f9-a03b-e5b64157dae2}">
|
||||||
|
<property name="position">
|
||||||
|
<value>2.3799999999999999</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="MixerBusFader" id="{87c39274-d260-4d3e-8dfb-6810212ab4af}" />
|
||||||
|
</objects>
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="EventFolder" id="{492f1f1e-6836-4f89-90a3-c9b795482c9f}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Robots</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{e5bf65ee-d6e7-4aa2-8f58-f527d31905fa}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -16,9 +16,91 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="MixerBusEffectChain" id="{02d7cfc6-b23b-419e-b6b0-a0d3ff6f3b37}">
|
<object class="MixerBusEffectChain" id="{02d7cfc6-b23b-419e-b6b0-a0d3ff6f3b37}">
|
||||||
<relationship name="effects">
|
<relationship name="effects">
|
||||||
|
<destination>{debf6d1b-1a0f-410a-b164-73cf847387d4}</destination>
|
||||||
<destination>{1bc06e27-7d01-4337-9d6a-554bc11f1617}</destination>
|
<destination>{1bc06e27-7d01-4337-9d6a-554bc11f1617}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
</object>
|
</object>
|
||||||
<object class="MixerBusPanner" id="{24ad219d-2c49-44e9-b50d-c15dd77a0dfd}" />
|
<object class="MixerBusPanner" id="{24ad219d-2c49-44e9-b50d-c15dd77a0dfd}" />
|
||||||
|
<object class="ThreeEQEffect" id="{debf6d1b-1a0f-410a-b164-73cf847387d4}">
|
||||||
|
<relationship name="automators">
|
||||||
|
<destination>{eff12f3d-31f6-4b1a-b63d-e496ac03e35d}</destination>
|
||||||
|
<destination>{7f16f01e-2e33-40fd-83aa-52a27d827b57}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
<object class="MixerBusFader" id="{1bc06e27-7d01-4337-9d6a-554bc11f1617}" />
|
<object class="MixerBusFader" id="{1bc06e27-7d01-4337-9d6a-554bc11f1617}" />
|
||||||
|
<object class="Automator" id="{eff12f3d-31f6-4b1a-b63d-e496ac03e35d}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>highGain</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{2ea0060d-ba12-4de5-b7a7-f0d84edd52a1}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="Automator" id="{7f16f01e-2e33-40fd-83aa-52a27d827b57}">
|
||||||
|
<property name="nameOfPropertyBeingAutomated">
|
||||||
|
<value>midGain</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="automationCurves">
|
||||||
|
<destination>{032c0970-fd82-4087-a267-fa43fe99a457}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{2ea0060d-ba12-4de5-b7a7-f0d84edd52a1}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{2abaa56b-9381-47f3-8a8a-0b85c06ed53c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{827cb7da-a2d5-4297-bd37-7ed89b6e92bd}</destination>
|
||||||
|
<destination>{e83f84f7-fb0f-4abd-ac53-58da9eeb895c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationCurve" id="{032c0970-fd82-4087-a267-fa43fe99a457}">
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{2abaa56b-9381-47f3-8a8a-0b85c06ed53c}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="automationPoints">
|
||||||
|
<destination>{b80a6239-b941-4a03-82be-150abd7e9bc7}</destination>
|
||||||
|
<destination>{613da9ce-6cbd-4cee-9ccb-bf6fef1fe89a}</destination>
|
||||||
|
<destination>{b47b9f06-005d-4085-8a8b-ab5c6b4aaf6c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{827cb7da-a2d5-4297-bd37-7ed89b6e92bd}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.5</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-44</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{e83f84f7-fb0f-4abd-ac53-58da9eeb895c}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{b80a6239-b941-4a03-82be-150abd7e9bc7}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.48870056497175141</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-3</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{613da9ce-6cbd-4cee-9ccb-bf6fef1fe89a}">
|
||||||
|
<property name="position">
|
||||||
|
<value>1.0084745762711864</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-23</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
<object class="AutomationPoint" id="{b47b9f06-005d-4085-8a8b-ab5c6b4aaf6c}">
|
||||||
|
<property name="position">
|
||||||
|
<value>0.18361581920903955</value>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<value>-1</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
</objects>
|
</objects>
|
||||||
|
@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPreset" id="{09acd8cf-4bc5-49b4-8d58-25102d8eb8dd}">
|
||||||
|
<property name="name">
|
||||||
|
<value>CarPassengerLogic</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{2abaa56b-9381-47f3-8a8a-0b85c06ed53c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="GameParameter" id="{2abaa56b-9381-47f3-8a8a-0b85c06ed53c}">
|
||||||
|
<property name="maximum">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="isGlobal">
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>2</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="modulators">
|
||||||
|
<destination>{fed3c8dc-0117-4798-8b76-bec2dfbfdfa2}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="SeekModulator" id="{fed3c8dc-0117-4798-8b76-bec2dfbfdfa2}">
|
||||||
|
<property name="nameOfPropertyBeingModulated">
|
||||||
|
<value>cursorPosition</value>
|
||||||
|
</property>
|
||||||
|
<property name="speedAscending">
|
||||||
|
<value>0.84999996423721313</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -5,7 +5,7 @@
|
|||||||
<value>EasyBoltLogic</value>
|
<value>EasyBoltLogic</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="folder">
|
<relationship name="folder">
|
||||||
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
<destination>{676de615-0183-4bd2-a2b9-8e8068db47bf}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPreset" id="{319559ef-04bf-4399-ad4d-f2857201675d}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Car</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{8d183079-30c4-4cbb-837b-5db8c493ed3b}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="GameParameter" id="{8d183079-30c4-4cbb-837b-5db8c493ed3b}">
|
||||||
|
<property name="parameterType">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>40</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -0,0 +1,28 @@
|
|||||||
|
<?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>
|
@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPreset" id="{51d6f185-be2f-4bf5-8d01-304a53f0f787}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Distance</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{f4119a87-5d77-41a2-9375-dff95d409e9f}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="GameParameter" id="{f4119a87-5d77-41a2-9375-dff95d409e9f}">
|
||||||
|
<property name="parameterType">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>20</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPreset" id="{53a0c204-15b9-4549-977f-0e09c7978eca}">
|
||||||
|
<property name="name">
|
||||||
|
<value>ServerHumEQ</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
<relationship name="parameter">
|
||||||
|
<destination>{776add0b-241b-49e5-acd1-44451b155d9c}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
<object class="GameParameter" id="{776add0b-241b-49e5-acd1-44451b155d9c}">
|
||||||
|
<property name="parameterType">
|
||||||
|
<value>3</value>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<value>5</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -5,7 +5,7 @@
|
|||||||
<value>Surface</value>
|
<value>Surface</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="folder">
|
<relationship name="folder">
|
||||||
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
<destination>{676de615-0183-4bd2-a2b9-8e8068db47bf}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{e8d11d80-0470-4c7b-95cf-303fc2f1d9b8}</destination>
|
<destination>{e8d11d80-0470-4c7b-95cf-303fc2f1d9b8}</destination>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<value>SpraySwitcher</value>
|
<value>SpraySwitcher</value>
|
||||||
</property>
|
</property>
|
||||||
<relationship name="folder">
|
<relationship name="folder">
|
||||||
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
<destination>{676de615-0183-4bd2-a2b9-8e8068db47bf}</destination>
|
||||||
</relationship>
|
</relationship>
|
||||||
<relationship name="parameter">
|
<relationship name="parameter">
|
||||||
<destination>{b230b442-30ec-4a14-b8e2-feea6a3f720e}</destination>
|
<destination>{b230b442-30ec-4a14-b8e2-feea6a3f720e}</destination>
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
<?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>20</value>
|
||||||
|
</property>
|
||||||
|
<property name="initialValue">
|
||||||
|
<value>0</value>
|
||||||
|
</property>
|
||||||
|
<property name="isExposedRecursively">
|
||||||
|
<value>false</value>
|
||||||
|
</property>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -0,0 +1,28 @@
|
|||||||
|
<?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>
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<objects serializationModel="Studio.02.03.00">
|
||||||
|
<object class="ParameterPresetFolder" id="{676de615-0183-4bd2-a2b9-8e8068db47bf}">
|
||||||
|
<property name="name">
|
||||||
|
<value>Switches</value>
|
||||||
|
</property>
|
||||||
|
<relationship name="folder">
|
||||||
|
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||||
|
</relationship>
|
||||||
|
</object>
|
||||||
|
</objects>
|
@ -1 +1 @@
|
|||||||
{"HighScore":451.0}
|
{"HighScore":465.0}
|
@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"entries": [
|
"entries": [
|
||||||
|
{
|
||||||
|
"name": "jtimu",
|
||||||
|
"score": 465.0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DABESTEST",
|
"name": "DABESTEST",
|
||||||
"score": 451.0
|
"score": 451.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user