forked from cgvr/DeltaVR
some old sounds are added
This commit is contained in:
@@ -2,6 +2,8 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Unity.XR.CoreUtils;
|
||||
using UnityEngine;
|
||||
using FMOD.Studio;
|
||||
|
||||
using static MouseLook;
|
||||
|
||||
public class CarDrivingRoutine : MonoBehaviour
|
||||
@@ -23,10 +25,21 @@ public class CarDrivingRoutine : MonoBehaviour
|
||||
public List<GameObject> FrontTires;
|
||||
public List<GameObject> BackTires;
|
||||
|
||||
|
||||
private EventInstance CarMovement;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
CarMovement = AudioManager.Instance.CreateInstance(FMODEvents.Instance.BoltCarSimpleDriving); //initialising the variable
|
||||
CarMovement.setParameterByName("EasyBoltLogic", 0); //"Driving - 0 in FMOD"
|
||||
CarMovement.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //setting 3d attributes
|
||||
}
|
||||
private void Start()
|
||||
{
|
||||
targetSpeed = StraightSpeed;
|
||||
targetRotationSpeed = rotationSpeed;
|
||||
|
||||
CarMovement.start(); //starting the car sound here
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
@@ -73,6 +86,8 @@ public class CarDrivingRoutine : MonoBehaviour
|
||||
// Proceed to the next waypoint
|
||||
_waypoint = _waypoint.Next;
|
||||
}
|
||||
|
||||
CarMovement.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject)); //updating the attributes
|
||||
}
|
||||
|
||||
private void rollTires()
|
||||
@@ -106,6 +121,9 @@ public class CarDrivingRoutine : MonoBehaviour
|
||||
StartCoroutine(SmoothAdjustSpeed(0, 0, haltspeed)); // Smoothly halt in 1 second
|
||||
_tireSound.Stop();
|
||||
_stopSound.Play();
|
||||
|
||||
CarMovement.setParameterByName("EasyBoltLogic", 1);
|
||||
|
||||
}
|
||||
|
||||
private void OnTriggerExit(Collider other)
|
||||
@@ -114,6 +132,9 @@ public class CarDrivingRoutine : MonoBehaviour
|
||||
StartCoroutine(SmoothAdjustSpeed(targetSpeed, targetRotationSpeed, haltspeed)); // Smoothly resume speed in 1 second
|
||||
_stopSound.Stop();
|
||||
_tireSound.Play();
|
||||
|
||||
CarMovement.setParameterByName("EasyBoltLogic", 0);
|
||||
CarMovement.start();
|
||||
}
|
||||
|
||||
private IEnumerator SmoothAdjustSpeed(float targetStraightSpeed, float targetRotationSpeed, float duration)
|
||||
|
||||
@@ -37,6 +37,8 @@ public class PassangerSeat : LocomotionProvider
|
||||
|
||||
Vector3 cameraShift = cameraTransform.localPosition;
|
||||
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorOpen, gameObject);
|
||||
|
||||
currentPassanger = player;
|
||||
player.transform.SetParent(this.transform);
|
||||
player.transform.localPosition = -cameraShift;
|
||||
@@ -75,7 +77,9 @@ public class PassangerSeat : LocomotionProvider
|
||||
|
||||
Transform cameraTransform = cameraChild.transform.parent.transform;
|
||||
|
||||
// Set the player’s parent to null (making it part of the scene hierarchy)
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.DoorClose, gameObject);
|
||||
|
||||
// Set the player�s parent to null (making it part of the scene hierarchy)
|
||||
currentPassanger.transform.SetParent(null);
|
||||
|
||||
// Put the player outside;
|
||||
|
||||
@@ -303,6 +303,8 @@ public class ElevatorBox : MonoBehaviour
|
||||
SetState(ElevatorState.ClosingDoors);
|
||||
playRandomAudioClipFrom(closeDoorsClips);
|
||||
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ElevatorDoorClosing, gameObject); //fmod attached 3d oneshot event
|
||||
|
||||
ElevatorOuter currentCaller = findCurrentCaller();
|
||||
|
||||
if (currentCaller != null) currentCaller.CloseDoors();
|
||||
@@ -318,6 +320,9 @@ public class ElevatorBox : MonoBehaviour
|
||||
//Debug.Log("Opening doors");
|
||||
SetState(ElevatorState.OpeningDoors);
|
||||
playRandomAudioClipFrom(openDoorsClips);
|
||||
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ElevatorDoorOpening, gameObject); //fmod attached 3d oneshot event
|
||||
|
||||
ElevatorOuter targetCaller = findTargetCaller();
|
||||
//Debug.Log("Target caller is: " + targetCaller);
|
||||
if (targetCaller != null)
|
||||
@@ -367,6 +372,8 @@ public class ElevatorBox : MonoBehaviour
|
||||
SetState(ElevatorState.Moving);
|
||||
playRandomAudioClipFrom(moveElevatorClips);
|
||||
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ElevatorMovement, gameObject); //fmod attached 3d oneshot event
|
||||
|
||||
while (t < 1f)
|
||||
{
|
||||
t += Time.deltaTime / floorMoveTime;
|
||||
|
||||
@@ -124,6 +124,7 @@ GameObject:
|
||||
m_Component:
|
||||
- component: {fileID: 6021721823031538141}
|
||||
- component: {fileID: 4707456952479937532}
|
||||
- component: {fileID: 5921542733598710255}
|
||||
m_Layer: 0
|
||||
m_Name: Portal
|
||||
m_TagString: Untagged
|
||||
@@ -148,7 +149,7 @@ Transform:
|
||||
- {fileID: 1266057804064659733}
|
||||
- {fileID: 5614923999591170275}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_RootOrder: -1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!82 &4707456952479937532
|
||||
AudioSource:
|
||||
@@ -291,6 +292,37 @@ AudioSource:
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
--- !u!114 &5921542733598710255
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 4777591596180506993}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 9a6610d2e704f1648819acc8d7460285, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
CollisionTag:
|
||||
EventReference:
|
||||
Guid:
|
||||
Data1: 214152321
|
||||
Data2: 1136432684
|
||||
Data3: -1979358295
|
||||
Data4: 727957873
|
||||
Path: event:/Ambiences/PortalSpacial
|
||||
Event:
|
||||
EventPlayTrigger: 1
|
||||
EventStopTrigger: 0
|
||||
AllowFadeout: 1
|
||||
TriggerOnce: 0
|
||||
Preload: 0
|
||||
NonRigidbodyVelocity: 0
|
||||
Params: []
|
||||
OverrideAttenuation: 0
|
||||
OverrideMinDistance: 1
|
||||
OverrideMaxDistance: 20
|
||||
--- !u!1 &6014189720456933605
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -527,3 +559,4 @@ MonoBehaviour:
|
||||
portalScene: {fileID: 7751003758844882782}
|
||||
occlusionPortal: {fileID: 0}
|
||||
_shouldTeleport: 1
|
||||
teleportationProvider: {fileID: 0}
|
||||
|
||||
@@ -31,7 +31,6 @@ public class SpaceEnterCollider : MonoBehaviour
|
||||
playerGravity.isInSpace = true;
|
||||
}
|
||||
Debug.Log(other + " entered space.");
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.PortalEnter, gameObject);
|
||||
}
|
||||
|
||||
private void OnTriggerExit(Collider other)
|
||||
@@ -53,6 +52,5 @@ public class SpaceEnterCollider : MonoBehaviour
|
||||
yield return new WaitForSeconds(1f); // Wait for 1 second
|
||||
playerGravity.isInSpace = false;
|
||||
Debug.Log("Default gravity restored after 1 second.");
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.PortalEnter, gameObject);
|
||||
}
|
||||
}
|
||||
@@ -65,7 +65,10 @@ public class StencilPortal : MonoBehaviour
|
||||
matchOrientation = MatchOrientation.TargetUpAndForward
|
||||
};
|
||||
|
||||
AudioManager.Instance.PlayOneShot3D(FMODEvents.Instance.PortalEnter, targetPosition);
|
||||
|
||||
teleportationProvider.QueueTeleportRequest(request);
|
||||
|
||||
other.transform.rotation = TransformRotationBetweenPortals(this, targetPortal, other.transform.rotation);
|
||||
}
|
||||
else
|
||||
@@ -79,6 +82,7 @@ public class StencilPortal : MonoBehaviour
|
||||
{
|
||||
Destroy(gameObject, 0.5f);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void OnTriggerExit(Collider other)
|
||||
@@ -86,6 +90,9 @@ public class StencilPortal : MonoBehaviour
|
||||
AllowTeleport();
|
||||
if (!_shouldTeleport || IsInvoking(nameof(AllowTeleport))) return;
|
||||
if (!other.CompareTag("Player")) return;
|
||||
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.PortalEnter, gameObject);
|
||||
|
||||
Debug.Log(transform.name + " player exited");
|
||||
Invoke(nameof(AllowTeleport), 1f);
|
||||
}
|
||||
|
||||
@@ -4,37 +4,61 @@ using System.Runtime.Remoting.Messaging;
|
||||
using UnityEngine;
|
||||
using UnityEngine.PlayerLoop;
|
||||
using UnityEngine.XR.Content.Interaction;
|
||||
using FMOD.Studio;
|
||||
|
||||
public class AlarmTrigger : MonoBehaviour
|
||||
{
|
||||
public XRPushButton PushButton;
|
||||
public AudioSource AlarmSequence;
|
||||
public AudioSource VentilationSequence;
|
||||
|
||||
private EventInstance RoomHum;
|
||||
private EventInstance AlarmSound;
|
||||
private bool hasAlarm = false;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
RoomHum = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomHumming);
|
||||
RoomHum.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject));
|
||||
|
||||
AlarmSound = AudioManager.Instance.CreateInstance(FMODEvents.Instance.ServerRoomAlarm);
|
||||
AlarmSound.set3DAttributes(FMODUnity.RuntimeUtils.To3DAttributes(gameObject));
|
||||
|
||||
|
||||
}
|
||||
void Start()
|
||||
{
|
||||
if (PushButton != null)
|
||||
{
|
||||
PushButton.onPress.AddListener(OnButtonPressed);
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.ServerRoomButton, gameObject);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
void OnButtonPressed()
|
||||
{
|
||||
Debug.Log("Alarm button Pressed!");
|
||||
|
||||
if (!AlarmSequence.isPlaying) { //if alarm isn't already triggered.
|
||||
|
||||
if (!AudioManager.IsPlaying(AlarmSound)){ //if alarm isn't already triggered.
|
||||
VentilationSequence.Stop();
|
||||
AlarmSequence.Play();
|
||||
|
||||
AlarmSound.start();
|
||||
AudioManager.Instance.StopInstance(RoomHum, STOP_MODE.ALLOWFADEOUT);
|
||||
|
||||
|
||||
hasAlarm = true;
|
||||
}
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
if(hasAlarm && !AlarmSequence.isPlaying) // If alarm state has ended.
|
||||
if(hasAlarm && !AudioManager.IsPlaying(AlarmSound)) // If alarm state has ended.
|
||||
{
|
||||
VentilationSequence.Play(); // Return to normal.
|
||||
|
||||
RoomHum.start();
|
||||
|
||||
hasAlarm = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,6 +100,10 @@ PrefabInstance:
|
||||
type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 2488785156293713400}
|
||||
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: ac65e655dd40bcd48b72b3f8ddcf45bd,
|
||||
type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 3366414401841504121}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: ac65e655dd40bcd48b72b3f8ddcf45bd, type: 3}
|
||||
--- !u!1 &7023167506039495560 stripped
|
||||
GameObject:
|
||||
@@ -252,3 +256,34 @@ AudioSource:
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
--- !u!114 &3366414401841504121
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7023167506039495560}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 9a6610d2e704f1648819acc8d7460285, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
CollisionTag:
|
||||
EventReference:
|
||||
Guid:
|
||||
Data1: 2088767158
|
||||
Data2: 1236037630
|
||||
Data3: 1977926589
|
||||
Data4: -1933500246
|
||||
Path: event:/Ambiences/Server/OnlyHum
|
||||
Event:
|
||||
EventPlayTrigger: 1
|
||||
EventStopTrigger: 0
|
||||
AllowFadeout: 1
|
||||
TriggerOnce: 0
|
||||
Preload: 0
|
||||
NonRigidbodyVelocity: 0
|
||||
Params: []
|
||||
OverrideAttenuation: 0
|
||||
OverrideMinDistance: 1
|
||||
OverrideMaxDistance: 6.8
|
||||
|
||||
@@ -58,11 +58,13 @@ namespace _PROJECT.Multiplayer.NewBow
|
||||
if (PullAmount == 0 & newPull > 0)
|
||||
{
|
||||
pullSounds.Play();
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BowPullback, gameObject);
|
||||
}
|
||||
|
||||
if (PullAmount < 0.98f & newPull >= 0.98f)
|
||||
{
|
||||
maxPullSounds.Play();
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BowPullbackMax, gameObject);
|
||||
}
|
||||
|
||||
PullAmount = newPull;
|
||||
|
||||
@@ -63,6 +63,7 @@ namespace _PROJECT.Multiplayer.NewBow
|
||||
OwnerDeselectRpc(Owner, arrow);
|
||||
_interactionManager.SelectExit(_notch, _notch.firstInteractableSelected);
|
||||
PlayReleaseSoundRPC();
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BowArrowRelease, gameObject);
|
||||
}
|
||||
|
||||
_arrowNetworkObject = null;
|
||||
@@ -81,6 +82,7 @@ namespace _PROJECT.Multiplayer.NewBow
|
||||
_interactionManager.SelectEnter(_notch as IXRSelectInteractor, arrow);
|
||||
OwnerSelectRpc(Owner, arrowObject.GetComponent<NetworkObject>());
|
||||
PlayNockSoundRPC();
|
||||
AudioManager.Instance.PlayAttachedInstance(FMODEvents.Instance.BowArrowNock, gameObject);
|
||||
}
|
||||
|
||||
public override void OnOwnershipClient(NetworkConnection prevOwner)
|
||||
|
||||
@@ -36,7 +36,7 @@ Transform:
|
||||
m_Children:
|
||||
- {fileID: 7933779445518253981}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_RootOrder: -1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &3572526038880022669
|
||||
MonoBehaviour:
|
||||
@@ -57,8 +57,6 @@ MonoBehaviour:
|
||||
type: 3}
|
||||
endPosition: {x: 0, y: 0, z: 0}
|
||||
forwardSpeed: 2
|
||||
minRandomOffset: {x: 0, y: 0, z: 0}
|
||||
maxRandomOffset: {x: 0, y: 0, z: 0}
|
||||
--- !u!54 &3766976745949113692
|
||||
Rigidbody:
|
||||
m_ObjectHideFlags: 0
|
||||
|
||||
Binary file not shown.
@@ -20,6 +20,32 @@ public class FMODEvents : MonoBehaviour
|
||||
[field: SerializeField] public EventReference MapOpen { get; private set; }
|
||||
[field: SerializeField] public EventReference Hover { get; private set; }
|
||||
|
||||
[field: Header("Initial events")]
|
||||
[field: SerializeField] public EventReference PortalSpacial { get; private set; }
|
||||
[field: SerializeField] public EventReference UfoPassing { get; private set; }
|
||||
|
||||
[field: SerializeField] public EventReference BowArrowHit { get; private set; }
|
||||
[field: SerializeField] public EventReference BowArrowNock { get; private set; }
|
||||
[field: SerializeField] public EventReference BowArrowRelease { get; private set; }
|
||||
[field: SerializeField] public EventReference BowPullback { get; private set; }
|
||||
[field: SerializeField] public EventReference BowPullbackMax { get; private set; }
|
||||
|
||||
[field: SerializeField] public EventReference ElevatorDoorClosing { get; private set; }
|
||||
[field: SerializeField] public EventReference ElevatorDoorOpening { get; private set; }
|
||||
[field: SerializeField] public EventReference ElevatorArrival { get; private set; }
|
||||
[field: SerializeField] public EventReference ElevatorMovement { get; private set; }
|
||||
|
||||
[field: SerializeField] public EventReference BoltCarStopSound { get; private set; }
|
||||
[field: SerializeField] public EventReference BoltCarSimpleDriving { get; private set; }
|
||||
[field: SerializeField] public EventReference BoltCarHorn { get; private set; }
|
||||
|
||||
[field: SerializeField] public EventReference ServerRoomAlarm { get; private set; }
|
||||
[field: SerializeField] public EventReference ServerRoomButton { get; private set; }
|
||||
[field: SerializeField] public EventReference ServerRoomHumming { get; private set; }
|
||||
[field: SerializeField] public EventReference ServerRoomRackHum { get; private set; }
|
||||
|
||||
|
||||
|
||||
public static FMODEvents Instance { get; private set; }
|
||||
|
||||
private void Awake()
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -53,7 +53,7 @@
|
||||
<destination>{e4c14d23-8480-46d6-bf40-e1fbb66525f8}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{c3de3536-299f-4b66-aaab-f5b3dfcbb631}" />
|
||||
|
||||
@@ -57,10 +57,14 @@
|
||||
<destination>{4c312478-5cc1-4b8d-b975-dbab67a5ed47}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</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="GroupTrack" id="{2f703b05-d98b-48c6-936f-3d4f241ec7d1}">
|
||||
<relationship name="modules">
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
<object class="MixerBusPanner" id="{a10759f2-39bd-44a2-b764-d3f6acec36b6}" />
|
||||
<object class="MultiSound" id="{058f4300-35b2-4b1a-ad2b-ded604f7bc05}">
|
||||
<property name="length">
|
||||
<value>3.1500000000000004</value>
|
||||
<value>2.96</value>
|
||||
</property>
|
||||
<relationship name="modulators">
|
||||
<destination>{6e63384d-6338-46de-8590-f5a0bbb0477f}</destination>
|
||||
|
||||
@@ -59,10 +59,14 @@
|
||||
<destination>{24174714-86a5-40f1-8b02-9281c92d49d5}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</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="GroupTrack" id="{9f8483f9-5685-4483-82f3-bca2da23c465}">
|
||||
<relationship name="modules">
|
||||
@@ -198,7 +202,7 @@
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{48a9f589-80cf-4cee-9075-2fea6e720c8b}">
|
||||
<property name="volume">
|
||||
<value>0.5</value>
|
||||
<value>1.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 2</value>
|
||||
|
||||
@@ -53,12 +53,12 @@
|
||||
<destination>{81c25a42-8a5e-4295-8e79-12095db53616}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{7a4eba1d-e26c-43ab-88c3-074d4470682a}">
|
||||
<property name="maximumDistance">
|
||||
<value>7.5999999</value>
|
||||
<value>9</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{9797df27-6964-4d0a-bb16-43602dffc41d}" />
|
||||
@@ -107,6 +107,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{70736360-07ff-485f-bc8e-3a9b35b9cbd7}">
|
||||
<property name="volume">
|
||||
<value>4</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
|
||||
@@ -72,6 +72,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{752d4134-136f-42f2-8904-9ab06a643d9f}">
|
||||
<property name="volume">
|
||||
<value>10</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{5f3e822b-bfc7-44f4-9a4f-421b142d08a3}</destination>
|
||||
</relationship>
|
||||
@@ -90,7 +93,13 @@
|
||||
<object class="MixerBusPanner" id="{f0e35ac3-b44c-4fc0-a0f5-036e914094f7}" />
|
||||
<object class="MultiSound" id="{1f038741-9155-4acc-a2f0-50b9c543c6ca}">
|
||||
<property name="length">
|
||||
<value>1.1500000000000001</value>
|
||||
<value>1.05</value>
|
||||
</property>
|
||||
<property name="volume">
|
||||
<value>5</value>
|
||||
</property>
|
||||
<property name="pitch">
|
||||
<value>0.900000036</value>
|
||||
</property>
|
||||
<relationship name="modulators">
|
||||
<destination>{7141a651-ee10-4129-ad5b-d5d159219d42}</destination>
|
||||
@@ -170,7 +179,7 @@
|
||||
<object class="SpatialiserEffect" id="{184f8826-a832-4799-8c5d-c74735b334c0}" />
|
||||
<object class="AutomationPoint" id="{32ecb020-66d1-440a-9b50-2fe774979bfe}">
|
||||
<property name="position">
|
||||
<value>0.15000000000000013</value>
|
||||
<value>0.15000000000000036</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
@@ -181,7 +190,7 @@
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{10217748-1298-432b-a087-c29d3842de39}">
|
||||
<property name="position">
|
||||
<value>1.1500000000000001</value>
|
||||
<value>1.05</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{08586293-44c3-4f17-b643-75f1352e19f1}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{71d2e4a7-c047-4d2a-9d97-c23cae3a5511}" />
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{3e854fc1-ef39-4841-82a1-28333142fdfa}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{acc43533-9391-43e2-8a11-816eb640ea7f}" />
|
||||
|
||||
@@ -101,6 +101,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{42f44c39-be5a-4843-b71b-85ba85f03058}">
|
||||
<property name="volume">
|
||||
<value>6.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{a3566de7-edf1-49b3-873b-2c846c9be0e9}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{36cf5b1d-e985-4ad5-8b32-79341e66a2ef}" />
|
||||
|
||||
@@ -53,12 +53,12 @@
|
||||
<destination>{c2cc40c9-eaa3-4660-a3b1-c3e295123233}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{46d55cc2-2c4e-4708-9297-e9a75e5b94b5}">
|
||||
<property name="maximumDistance">
|
||||
<value>65</value>
|
||||
<value>25</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{2981f918-8c6d-4dc1-9511-505b40dbc05d}" />
|
||||
@@ -101,6 +101,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{ff2d389a-8f9a-466e-8a20-986326a8c957}">
|
||||
<property name="volume">
|
||||
<value>5.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
|
||||
@@ -0,0 +1,263 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<objects serializationModel="Studio.02.03.00">
|
||||
<object class="Event" id="{7c800eb6-6ffe-49ac-bdc3-e475aa20c18c}">
|
||||
<property name="name">
|
||||
<value>OnlyHum</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{5d87e2fb-50d7-435d-bcfa-207929c464ce}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixer">
|
||||
<destination>{94eb8669-498d-4ab9-a9ad-ac26c390427a}</destination>
|
||||
</relationship>
|
||||
<relationship name="masterTrack">
|
||||
<destination>{708593bc-bb70-47a9-955f-907560d114bc}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerInput">
|
||||
<destination>{384ee97b-737f-48e5-b505-a9401c2ffeb9}</destination>
|
||||
</relationship>
|
||||
<relationship name="automatableProperties">
|
||||
<destination>{1fb9b144-3aba-4f27-adac-3209e96a12a3}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTracks">
|
||||
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
||||
</relationship>
|
||||
<relationship name="groupTracks">
|
||||
<destination>{08383708-a4ec-4ed4-b239-3bc763c83cd0}</destination>
|
||||
</relationship>
|
||||
<relationship name="timeline">
|
||||
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||
</relationship>
|
||||
<relationship name="banks">
|
||||
<destination>{f141f2d4-6fa9-465a-a607-941cef3e083a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixer" id="{94eb8669-498d-4ab9-a9ad-ac26c390427a}">
|
||||
<relationship name="masterBus">
|
||||
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MasterTrack" id="{708593bc-bb70-47a9-955f-907560d114bc}">
|
||||
<relationship name="modules">
|
||||
<destination>{df15dac3-9896-4ee3-b440-080bd2774b16}</destination>
|
||||
<destination>{84519fd3-aa92-408a-819f-c7e32f421300}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerInput" id="{384ee97b-737f-48e5-b505-a9401c2ffeb9}">
|
||||
<relationship name="effectChain">
|
||||
<destination>{66d0c94f-935d-4207-8632-309629bf6c65}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{754a1107-5283-4e76-8000-9e2a43fe795e}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{1fb9b144-3aba-4f27-adac-3209e96a12a3}">
|
||||
<property name="maximumDistance">
|
||||
<value>6.80000019</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
|
||||
<object class="GroupTrack" id="{08383708-a4ec-4ed4-b239-3bc763c83cd0}">
|
||||
<relationship name="modules">
|
||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
||||
<destination>{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Timeline" id="{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}">
|
||||
<relationship name="modules">
|
||||
<destination>{35c155d3-11a5-48b4-ba27-ebdb8b07dbd0}</destination>
|
||||
</relationship>
|
||||
<relationship name="markers">
|
||||
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{d081d164-9b22-49da-9d30-6446d5c1a60a}">
|
||||
<relationship name="effectChain">
|
||||
<destination>{929b1c3e-951f-4cba-b573-a6725a0b69df}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixer">
|
||||
<destination>{94eb8669-498d-4ab9-a9ad-ac26c390427a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{df15dac3-9896-4ee3-b440-080bd2774b16}">
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="TransitionDestinationSound" id="{84519fd3-aa92-408a-819f-c7e32f421300}">
|
||||
<property name="start">
|
||||
<value>0.40000000000000002</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{66d0c94f-935d-4207-8632-309629bf6c65}">
|
||||
<relationship name="effects">
|
||||
<destination>{8334671c-21ec-4b08-a65f-03e78fa4f8f7}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
|
||||
<object class="TransitionSourceSound" id="{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}">
|
||||
<property name="length">
|
||||
<value>58.328526077097507</value>
|
||||
</property>
|
||||
<relationship name="audioFile">
|
||||
<destination>{68049f79-4a3e-48c1-88c9-b19082a26534}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}">
|
||||
<property name="volume">
|
||||
<value>-4</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{aff0a84f-2382-4445-ab2d-ff9fa115a0be}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{ffea0a28-2773-40c5-870b-a8ca2347662b}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="LoopRegion" id="{f0bec365-f358-476d-8289-fab527cda203}">
|
||||
<property name="position">
|
||||
<value>3</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>23.400000000000002</value>
|
||||
</property>
|
||||
<relationship name="timeline">
|
||||
<destination>{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTrack">
|
||||
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
|
||||
</relationship>
|
||||
<relationship name="transitionTimeline">
|
||||
<destination>{f6061a3c-0c28-403e-a689-a7066ac726d9}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{929b1c3e-951f-4cba-b573-a6725a0b69df}">
|
||||
<relationship name="effects">
|
||||
<destination>{e48ad53d-e9a1-4e8d-b153-43beab1a906c}</destination>
|
||||
<destination>{37b2067f-7fb5-4b09-b7b6-4a444510790f}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
|
||||
<object class="MixerBusFader" id="{8334671c-21ec-4b08-a65f-03e78fa4f8f7}" />
|
||||
<object class="TransitionSourceFadeOutCurve" id="{efa8bb86-2024-43c1-be7c-ee8c1e321e45}">
|
||||
<relationship name="startPoint">
|
||||
<destination>{b04614d7-84ba-4e05-afb6-41c293a14819}</destination>
|
||||
</relationship>
|
||||
<relationship name="endPoint">
|
||||
<destination>{3c732f5d-21f5-4498-8cb5-a13df8fd6c3c}</destination>
|
||||
</relationship>
|
||||
<relationship name="relatedModule">
|
||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionDestinationFadeInCurve" id="{e26f891b-8c70-4ab3-b685-56c4549bee2e}">
|
||||
<relationship name="startPoint">
|
||||
<destination>{cce4694f-95a9-4e69-84ec-2929ecffbb40}</destination>
|
||||
</relationship>
|
||||
<relationship name="endPoint">
|
||||
<destination>{dbeca324-67c4-4acd-8a8a-0db364648b35}</destination>
|
||||
</relationship>
|
||||
<relationship name="relatedModule">
|
||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{aff0a84f-2382-4445-ab2d-ff9fa115a0be}">
|
||||
<relationship name="effects">
|
||||
<destination>{acbfc70b-5c7d-4114-9118-e03998f3e944}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{ffea0a28-2773-40c5-870b-a8ca2347662b}" />
|
||||
<object class="TransitionTimeline" id="{f6061a3c-0c28-403e-a689-a7066ac726d9}">
|
||||
<property name="length">
|
||||
<value>0.40000000000000002</value>
|
||||
</property>
|
||||
<relationship name="modules">
|
||||
<destination>{a5c17d57-867e-4c1c-9b99-2c1e3bc2f2b7}</destination>
|
||||
<destination>{15f8a430-46d0-42b6-b5ba-b09760398b61}</destination>
|
||||
<destination>{df15dac3-9896-4ee3-b440-080bd2774b16}</destination>
|
||||
<destination>{84519fd3-aa92-408a-819f-c7e32f421300}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{e48ad53d-e9a1-4e8d-b153-43beab1a906c}" />
|
||||
<object class="SpatialiserEffect" id="{37b2067f-7fb5-4b09-b7b6-4a444510790f}" />
|
||||
<object class="AutomationPoint" id="{b04614d7-84ba-4e05-afb6-41c293a14819}">
|
||||
<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="{3c732f5d-21f5-4498-8cb5-a13df8fd6c3c}">
|
||||
<property name="position">
|
||||
<value>0.40000000000000002</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{cce4694f-95a9-4e69-84ec-2929ecffbb40}">
|
||||
<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="{dbeca324-67c4-4acd-8a8a-0db364648b35}">
|
||||
<property name="position">
|
||||
<value>0.40000000000000002</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{acbfc70b-5c7d-4114-9118-e03998f3e944}" />
|
||||
</objects>
|
||||
@@ -56,7 +56,11 @@
|
||||
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}" />
|
||||
<object class="EventAutomatableProperties" id="{1483e936-b5ff-402e-a9e7-a0fd6e20c593}">
|
||||
<property name="maximumDistance">
|
||||
<value>25</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{43f4114e-560c-428d-bcfc-86bc16733d05}" />
|
||||
<object class="GroupTrack" id="{f68116fb-3806-4f81-bfad-950824025aa1}">
|
||||
<relationship name="modules">
|
||||
@@ -72,6 +76,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{52f69e2e-a3d7-41c1-84ea-fd37d2f4af98}">
|
||||
<property name="volume">
|
||||
<value>5.5</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{355d847d-6fcc-46c1-b9c7-f822f1709e57}</destination>
|
||||
</relationship>
|
||||
|
||||
@@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<objects serializationModel="Studio.02.03.00">
|
||||
<object class="Event" id="{7e1312c6-f538-463c-89f7-af96ce4f6057}">
|
||||
<property name="name">
|
||||
<value>BowPullbackMax</value>
|
||||
</property>
|
||||
<property name="outputFormat">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{0cba8840-8cbd-4de3-8edd-d6fa902d17ae}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixer">
|
||||
<destination>{580b2471-2ad7-4de2-a446-343d84294f58}</destination>
|
||||
</relationship>
|
||||
<relationship name="masterTrack">
|
||||
<destination>{0b839698-65a9-4c48-9ce5-5733e3007478}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerInput">
|
||||
<destination>{1811ea64-6b8d-4dff-bf7b-e43940527d16}</destination>
|
||||
</relationship>
|
||||
<relationship name="automatableProperties">
|
||||
<destination>{7ef619b4-88f1-48d5-947f-4ffb94acf260}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTracks">
|
||||
<destination>{1f80a385-7d41-434d-b93c-4535f60b3bca}</destination>
|
||||
</relationship>
|
||||
<relationship name="groupTracks">
|
||||
<destination>{f318c5d7-cc73-4c5b-bb58-ed983facb46f}</destination>
|
||||
</relationship>
|
||||
<relationship name="timeline">
|
||||
<destination>{ad63c3bf-9cae-46a5-bac6-fc0735d2d2e2}</destination>
|
||||
</relationship>
|
||||
<relationship name="banks">
|
||||
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixer" id="{580b2471-2ad7-4de2-a446-343d84294f58}">
|
||||
<relationship name="masterBus">
|
||||
<destination>{53fe1a4d-3d20-465b-8604-8516be28d18b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MasterTrack" id="{0b839698-65a9-4c48-9ce5-5733e3007478}">
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{53fe1a4d-3d20-465b-8604-8516be28d18b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerInput" id="{1811ea64-6b8d-4dff-bf7b-e43940527d16}">
|
||||
<relationship name="effectChain">
|
||||
<destination>{0e663487-cc8a-4927-913a-28981039e797}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{638de9b6-7a13-408f-b3f7-5f827a0ed1c1}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{69ee688f-dc4e-4df2-a125-df79ed93217e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{7ef619b4-88f1-48d5-947f-4ffb94acf260}" />
|
||||
<object class="MarkerTrack" id="{1f80a385-7d41-434d-b93c-4535f60b3bca}" />
|
||||
<object class="GroupTrack" id="{f318c5d7-cc73-4c5b-bb58-ed983facb46f}">
|
||||
<relationship name="modules">
|
||||
<destination>{900ab59b-2ad6-41af-a57e-b9d17bd4bc1f}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{4a102695-cdbc-4c91-9213-479e37d9c09f}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Timeline" id="{ad63c3bf-9cae-46a5-bac6-fc0735d2d2e2}">
|
||||
<relationship name="modules">
|
||||
<destination>{900ab59b-2ad6-41af-a57e-b9d17bd4bc1f}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{53fe1a4d-3d20-465b-8604-8516be28d18b}">
|
||||
<relationship name="effectChain">
|
||||
<destination>{11157870-d323-4e43-90d5-66ac5587644c}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{af1e0bc6-86a7-442e-8a7f-fceba5e15012}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixer">
|
||||
<destination>{580b2471-2ad7-4de2-a446-343d84294f58}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{0e663487-cc8a-4927-913a-28981039e797}">
|
||||
<relationship name="effects">
|
||||
<destination>{11f71be5-8607-41a9-a416-06f25c44c5ef}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{638de9b6-7a13-408f-b3f7-5f827a0ed1c1}" />
|
||||
<object class="SingleSound" id="{900ab59b-2ad6-41af-a57e-b9d17bd4bc1f}">
|
||||
<property name="length">
|
||||
<value>1.2925396825396793</value>
|
||||
</property>
|
||||
<property name="volume">
|
||||
<value>-3.5</value>
|
||||
</property>
|
||||
<relationship name="audioFile">
|
||||
<destination>{049afdf8-fd83-4c95-be65-f0a0e4cd7d1d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{4a102695-cdbc-4c91-9213-479e37d9c09f}">
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{dc496132-bfed-4eda-9d16-af982db316cf}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{7f54b39a-ae9b-4c48-bac8-fb8380b42398}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{53fe1a4d-3d20-465b-8604-8516be28d18b}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{11157870-d323-4e43-90d5-66ac5587644c}">
|
||||
<relationship name="effects">
|
||||
<destination>{220e2ce0-f7e9-4619-aff3-befc50906f12}</destination>
|
||||
<destination>{61dbeb6f-ecba-4974-8776-78293806718e}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{af1e0bc6-86a7-442e-8a7f-fceba5e15012}" />
|
||||
<object class="MixerBusFader" id="{11f71be5-8607-41a9-a416-06f25c44c5ef}" />
|
||||
<object class="MixerBusEffectChain" id="{dc496132-bfed-4eda-9d16-af982db316cf}">
|
||||
<relationship name="effects">
|
||||
<destination>{0253dc73-e8c5-44d1-bf5f-fcf8ca2bcaf3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{7f54b39a-ae9b-4c48-bac8-fb8380b42398}" />
|
||||
<object class="MixerBusFader" id="{220e2ce0-f7e9-4619-aff3-befc50906f12}" />
|
||||
<object class="SpatialiserEffect" id="{61dbeb6f-ecba-4974-8776-78293806718e}" />
|
||||
<object class="MixerBusFader" id="{0253dc73-e8c5-44d1-bf5f-fcf8ca2bcaf3}" />
|
||||
</objects>
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{9d17d214-c9f0-4694-8e50-2d018d3a3f11}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{42b42f05-1d56-4a68-8844-9072bffb593f}" />
|
||||
|
||||
@@ -110,6 +110,9 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{3b153e8f-b75d-4c50-a526-327157578375}">
|
||||
<property name="volume">
|
||||
<value>-6.5</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{e5060f5c-c9f8-4a33-beb2-26531b539432}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{12329f08-ea3b-40a6-9d1b-8537634a05a5}" />
|
||||
@@ -90,16 +90,19 @@
|
||||
<object class="MixerBusPanner" id="{e5060f5c-c9f8-4a33-beb2-26531b539432}" />
|
||||
<object class="SingleSound" id="{df8c9c34-53f3-415f-a785-3575b2066a94}">
|
||||
<property name="length">
|
||||
<value>0.40600000000000003</value>
|
||||
<value>0.38600000000000001</value>
|
||||
</property>
|
||||
<property name="timelockedOffset">
|
||||
<value>0.050000000000000003</value>
|
||||
<value>0.070000000000000007</value>
|
||||
</property>
|
||||
<relationship name="audioFile">
|
||||
<destination>{4e9f4162-c020-48d3-90aa-c93f7a4d8b73}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{24f7438c-1a29-4f87-a357-1bc18f9783ae}">
|
||||
<property name="volume">
|
||||
<value>-4</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
</property>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{3e919760-3b6c-4fc0-a0f1-f08423835bd5}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{06b0ec78-2fe3-45e0-b507-c537fb054491}" />
|
||||
|
||||
@@ -23,14 +23,19 @@
|
||||
<destination>{c49501f3-10eb-4bdd-b904-e7e6710c1d15}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTracks">
|
||||
<destination>{a26ae91a-1441-4797-a642-069d624e022f}</destination>
|
||||
<destination>{1982504c-3a07-46e2-b039-b9b7a1a1dad6}</destination>
|
||||
</relationship>
|
||||
<relationship name="groupTracks">
|
||||
<destination>{29660e79-a063-4b2e-a0ea-62bc161cc280}</destination>
|
||||
<destination>{a28a491a-b70a-4928-84f0-4a8d20da8436}</destination>
|
||||
</relationship>
|
||||
<relationship name="timeline">
|
||||
<destination>{2b587add-4f78-4187-a37f-dae4b4d360b5}</destination>
|
||||
</relationship>
|
||||
<relationship name="parameters">
|
||||
<destination>{052e1f9c-5b6f-476b-946d-b2bdcdc8f8eb}</destination>
|
||||
</relationship>
|
||||
<relationship name="banks">
|
||||
<destination>{9d1145b0-e099-4ee4-ab1d-23cc274af901}</destination>
|
||||
</relationship>
|
||||
@@ -44,6 +49,8 @@
|
||||
<relationship name="modules">
|
||||
<destination>{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}</destination>
|
||||
<destination>{8b5b1e6f-8c65-4fcd-9f8d-3751436c5e74}</destination>
|
||||
<destination>{a9466738-1b8d-4e70-9b7d-688dea1edd90}</destination>
|
||||
<destination>{fcddeaf0-4e73-470a-8cd1-ac1dae9e0af9}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{783c2004-c047-4bf0-a1b5-05f363b1ec24}</destination>
|
||||
@@ -57,27 +64,54 @@
|
||||
<destination>{4aed72c3-b0aa-465c-a3f2-fac44b603e66}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{c49501f3-10eb-4bdd-b904-e7e6710c1d15}" />
|
||||
<object class="EventAutomatableProperties" id="{c49501f3-10eb-4bdd-b904-e7e6710c1d15}">
|
||||
<property name="maximumDistance">
|
||||
<value>45</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{a26ae91a-1441-4797-a642-069d624e022f}" />
|
||||
<object class="MarkerTrack" id="{1982504c-3a07-46e2-b039-b9b7a1a1dad6}" />
|
||||
<object class="GroupTrack" id="{29660e79-a063-4b2e-a0ea-62bc161cc280}">
|
||||
<relationship name="modules">
|
||||
<destination>{4b72ff3d-2834-4234-8b60-b186b82e17fa}</destination>
|
||||
<destination>{7aa9cf68-a829-4b12-b35b-808f1598df22}</destination>
|
||||
<destination>{d80a6cb7-4e01-408b-aeeb-bdf3f026f8a1}</destination>
|
||||
<destination>{b4499ba3-0682-4445-a0c3-a2ff4458ca0a}</destination>
|
||||
<destination>{1fff41c7-043e-4c21-acc7-b8f2f8994b3f}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{091c9450-a21c-4ebf-b2a1-80de796c850d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="GroupTrack" id="{a28a491a-b70a-4928-84f0-4a8d20da8436}">
|
||||
<relationship name="modules">
|
||||
<destination>{bce4c5c5-20ca-4ba7-94e0-d28611cfd8db}</destination>
|
||||
<destination>{85073601-b8e4-4ae1-be57-2a8a10d997af}</destination>
|
||||
<destination>{05178856-04a2-4728-b715-9217fc5bb18f}</destination>
|
||||
<destination>{c350f37d-5272-4d6a-9054-928c1e67be6a}</destination>
|
||||
<destination>{9964499a-db8f-493b-bee8-bfa02b4f9b3a}</destination>
|
||||
</relationship>
|
||||
<relationship name="mixerGroup">
|
||||
<destination>{78ccdff9-5ac7-4f70-898c-306b3284fa82}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="Timeline" id="{2b587add-4f78-4187-a37f-dae4b4d360b5}">
|
||||
<relationship name="modules">
|
||||
<destination>{4b72ff3d-2834-4234-8b60-b186b82e17fa}</destination>
|
||||
<destination>{05178856-04a2-4728-b715-9217fc5bb18f}</destination>
|
||||
</relationship>
|
||||
<relationship name="markers">
|
||||
<destination>{5c94ebb3-1287-45c8-bfab-533e1639192b}</destination>
|
||||
<destination>{b54a18e7-fa7c-4f63-9e3b-8c7484a9e9b3}</destination>
|
||||
<destination>{250eac10-e01b-467a-8969-fb44d83f9d35}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="ParameterProxy" id="{052e1f9c-5b6f-476b-946d-b2bdcdc8f8eb}">
|
||||
<relationship name="preset">
|
||||
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerMaster" id="{783c2004-c047-4bf0-a1b5-05f363b1ec24}">
|
||||
@@ -104,6 +138,19 @@
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{a9466738-1b8d-4e70-9b7d-688dea1edd90}">
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="TransitionDestinationSound" id="{fcddeaf0-4e73-470a-8cd1-ac1dae9e0af9}">
|
||||
<property name="start">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{7d7b7795-8bae-4cc3-9035-0cf6d1341a98}">
|
||||
<relationship name="effects">
|
||||
<destination>{4af3e614-3781-4cf2-b219-24fb669ddca6}</destination>
|
||||
@@ -128,6 +175,15 @@
|
||||
<destination>{7afa3e98-540d-43a2-9418-22c433971b2d}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{b4499ba3-0682-4445-a0c3-a2ff4458ca0a}" />
|
||||
<object class="TransitionDestinationSound" id="{1fff41c7-043e-4c21-acc7-b8f2f8994b3f}">
|
||||
<property name="start">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{091c9450-a21c-4ebf-b2a1-80de796c850d}">
|
||||
<property name="name">
|
||||
<value>Audio 1</value>
|
||||
@@ -142,6 +198,54 @@
|
||||
<destination>{783c2004-c047-4bf0-a1b5-05f363b1ec24}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{bce4c5c5-20ca-4ba7-94e0-d28611cfd8db}">
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="TransitionDestinationSound" id="{85073601-b8e4-4ae1-be57-2a8a10d997af}">
|
||||
<property name="start">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="SingleSound" id="{05178856-04a2-4728-b715-9217fc5bb18f}">
|
||||
<property name="start">
|
||||
<value>29.400000000000002</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>3.6240000000000001</value>
|
||||
</property>
|
||||
<relationship name="audioFile">
|
||||
<destination>{e5c8c7bf-afb1-4055-a1b0-a2c3f583f42c}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionSourceSound" id="{c350f37d-5272-4d6a-9054-928c1e67be6a}">
|
||||
<relationship name="fadeOutCurve">
|
||||
<destination>{24ed03ae-9194-4150-8905-7dd80063ac12}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionDestinationSound" id="{9964499a-db8f-493b-bee8-bfa02b4f9b3a}">
|
||||
<relationship name="fadeInCurve">
|
||||
<destination>{3ab8c1a9-878c-461c-892d-3bdbc9cdb0a5}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventMixerGroup" id="{78ccdff9-5ac7-4f70-898c-306b3284fa82}">
|
||||
<property name="name">
|
||||
<value>Audio 2</value>
|
||||
</property>
|
||||
<relationship name="effectChain">
|
||||
<destination>{d0bce8c1-ceec-494a-bafc-02b3caaede9d}</destination>
|
||||
</relationship>
|
||||
<relationship name="panner">
|
||||
<destination>{3dec12a9-a9c7-48fc-9fb7-27ec50f1dd80}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{783c2004-c047-4bf0-a1b5-05f363b1ec24}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="LoopRegion" id="{5c94ebb3-1287-45c8-bfab-533e1639192b}">
|
||||
<property name="position">
|
||||
<value>0.5</value>
|
||||
@@ -159,6 +263,43 @@
|
||||
<destination>{dae054e7-60c6-4d77-96cc-35d0be657136}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="NamedMarker" id="{b54a18e7-fa7c-4f63-9e3b-8c7484a9e9b3}">
|
||||
<property name="position">
|
||||
<value>29.400000000000002</value>
|
||||
</property>
|
||||
<property name="name">
|
||||
<value>Stop</value>
|
||||
</property>
|
||||
<relationship name="timeline">
|
||||
<destination>{2b587add-4f78-4187-a37f-dae4b4d360b5}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTrack">
|
||||
<destination>{1982504c-3a07-46e2-b039-b9b7a1a1dad6}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionRegion" id="{250eac10-e01b-467a-8969-fb44d83f9d35}">
|
||||
<property name="position">
|
||||
<value>0.5</value>
|
||||
</property>
|
||||
<property name="length">
|
||||
<value>25.5</value>
|
||||
</property>
|
||||
<relationship name="timeline">
|
||||
<destination>{2b587add-4f78-4187-a37f-dae4b4d360b5}</destination>
|
||||
</relationship>
|
||||
<relationship name="markerTrack">
|
||||
<destination>{a26ae91a-1441-4797-a642-069d624e022f}</destination>
|
||||
</relationship>
|
||||
<relationship name="transitionTimeline">
|
||||
<destination>{8a1e2fda-33b5-4056-87f4-3b05a1a5a38b}</destination>
|
||||
</relationship>
|
||||
<relationship name="destination">
|
||||
<destination>{b54a18e7-fa7c-4f63-9e3b-8c7484a9e9b3}</destination>
|
||||
</relationship>
|
||||
<relationship name="triggerConditions">
|
||||
<destination>{7007bc9b-631e-461e-b46e-f1cb71b0a9e3}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{5ac38b31-98b7-473d-8882-03fa4bb5da28}">
|
||||
<relationship name="effects">
|
||||
<destination>{17b6686c-b69a-4290-9a34-f1615792f5c3}</destination>
|
||||
@@ -195,12 +336,63 @@
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{3670bdd9-6dc4-4791-a407-321518a7ee2b}" />
|
||||
<object class="TransitionSourceFadeOutCurve" id="{24ed03ae-9194-4150-8905-7dd80063ac12}">
|
||||
<relationship name="startPoint">
|
||||
<destination>{ce3ec112-9719-4c10-9608-13fec8d173d0}</destination>
|
||||
</relationship>
|
||||
<relationship name="endPoint">
|
||||
<destination>{8b8b7b9c-2587-4e7b-a8e3-5bcfe0137f93}</destination>
|
||||
</relationship>
|
||||
<relationship name="relatedModule">
|
||||
<destination>{9964499a-db8f-493b-bee8-bfa02b4f9b3a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionDestinationFadeInCurve" id="{3ab8c1a9-878c-461c-892d-3bdbc9cdb0a5}">
|
||||
<relationship name="startPoint">
|
||||
<destination>{116d2077-87b0-4b0f-8f6c-dbc340168bea}</destination>
|
||||
</relationship>
|
||||
<relationship name="endPoint">
|
||||
<destination>{c1b4e272-87d2-4cbd-b441-b953a9f55ad9}</destination>
|
||||
</relationship>
|
||||
<relationship name="relatedModule">
|
||||
<destination>{c350f37d-5272-4d6a-9054-928c1e67be6a}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{d0bce8c1-ceec-494a-bafc-02b3caaede9d}">
|
||||
<relationship name="effects">
|
||||
<destination>{b99da5db-4add-462e-999e-35bad8a56417}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusPanner" id="{3dec12a9-a9c7-48fc-9fb7-27ec50f1dd80}" />
|
||||
<object class="TransitionTimeline" id="{dae054e7-60c6-4d77-96cc-35d0be657136}">
|
||||
<relationship name="modules">
|
||||
<destination>{7aa9cf68-a829-4b12-b35b-808f1598df22}</destination>
|
||||
<destination>{d80a6cb7-4e01-408b-aeeb-bdf3f026f8a1}</destination>
|
||||
<destination>{05ec5f01-3eb6-4f68-b75b-e99b7c476eee}</destination>
|
||||
<destination>{8b5b1e6f-8c65-4fcd-9f8d-3751436c5e74}</destination>
|
||||
<destination>{bce4c5c5-20ca-4ba7-94e0-d28611cfd8db}</destination>
|
||||
<destination>{85073601-b8e4-4ae1-be57-2a8a10d997af}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="TransitionTimeline" id="{8a1e2fda-33b5-4056-87f4-3b05a1a5a38b}">
|
||||
<relationship name="modules">
|
||||
<destination>{b4499ba3-0682-4445-a0c3-a2ff4458ca0a}</destination>
|
||||
<destination>{1fff41c7-043e-4c21-acc7-b8f2f8994b3f}</destination>
|
||||
<destination>{c350f37d-5272-4d6a-9054-928c1e67be6a}</destination>
|
||||
<destination>{9964499a-db8f-493b-bee8-bfa02b4f9b3a}</destination>
|
||||
<destination>{a9466738-1b8d-4e70-9b7d-688dea1edd90}</destination>
|
||||
<destination>{fcddeaf0-4e73-470a-8cd1-ac1dae9e0af9}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="ParameterCondition" id="{7007bc9b-631e-461e-b46e-f1cb71b0a9e3}">
|
||||
<property name="minimum">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<relationship name="parameter">
|
||||
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{17b6686c-b69a-4290-9a34-f1615792f5c3}" />
|
||||
@@ -244,4 +436,43 @@
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{759a6042-11e6-4fc6-9d1a-576044528bf1}" />
|
||||
<object class="AutomationPoint" id="{ce3ec112-9719-4c10-9608-13fec8d173d0}">
|
||||
<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="{8b8b7b9c-2587-4e7b-a8e3-5bcfe0137f93}">
|
||||
<property name="position">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{116d2077-87b0-4b0f-8f6c-dbc340168bea}">
|
||||
<property name="position">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
<property name="curveShape">
|
||||
<value>-0.0476088375</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="AutomationPoint" id="{c1b4e272-87d2-4cbd-b441-b953a9f55ad9}">
|
||||
<property name="position">
|
||||
<value>1</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>1</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{b99da5db-4add-462e-999e-35bad8a56417}" />
|
||||
</objects>
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{2f60d028-dc8f-45db-ac5b-6e5b1a716e0a}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{99e273f5-cb40-4d2e-9e75-e963349aef99}" />
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{2f42552a-c959-4d41-88be-aa199ef8549a}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{d0888cde-f7c9-4339-b680-73cee1760b9e}" />
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
<object class="MixerBusPanner" id="{e6596d39-8e2a-4334-9fbb-117ba326e060}" />
|
||||
<object class="SingleSound" id="{323aeda9-a88f-4196-a0f6-55aabeed8c3e}">
|
||||
<property name="length">
|
||||
<value>2.6500000000000012</value>
|
||||
<value>2.3799999999999999</value>
|
||||
</property>
|
||||
<property name="timelockedOffset">
|
||||
<value>0.35000000000000003</value>
|
||||
@@ -100,6 +100,9 @@
|
||||
<destination>{bb457d7b-62da-41e5-9a38-dc64cf533e9d}</destination>
|
||||
<destination>{cdd76c1d-9f72-4a72-8074-d2f4b6fc2cb1}</destination>
|
||||
</relationship>
|
||||
<relationship name="fadeOutCurve">
|
||||
<destination>{c0c01a5c-5f2d-4669-8b5c-4ee696936174}</destination>
|
||||
</relationship>
|
||||
<relationship name="audioFile">
|
||||
<destination>{5328c5d6-44ab-4638-a72d-20743f838f89}</destination>
|
||||
</relationship>
|
||||
@@ -153,6 +156,14 @@
|
||||
<value>0.5</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="FadeCurve" id="{c0c01a5c-5f2d-4669-8b5c-4ee696936174}">
|
||||
<relationship name="startPoint">
|
||||
<destination>{b2fb1f1d-5401-41f3-bdc0-af2bd70cc79d}</destination>
|
||||
</relationship>
|
||||
<relationship name="endPoint">
|
||||
<destination>{10dfe4c4-3693-4219-8f60-39968d906099}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="MixerBusEffectChain" id="{0764a88d-1804-4fcd-8f96-e0344532f580}">
|
||||
<relationship name="effects">
|
||||
<destination>{3581fb60-fe20-471b-86ec-5d23a822ea7c}</destination>
|
||||
@@ -161,5 +172,24 @@
|
||||
<object class="MixerBusPanner" id="{c46f9fd0-8d92-4fdf-b52a-e4f3fb426e43}" />
|
||||
<object class="MixerBusFader" id="{141c70e6-48c1-4652-a1c5-f085876715ba}" />
|
||||
<object class="SpatialiserEffect" id="{0fe140aa-2555-40f9-8a13-285b95d736bf}" />
|
||||
<object class="AutomationPoint" id="{b2fb1f1d-5401-41f3-bdc0-af2bd70cc79d}">
|
||||
<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="{10dfe4c4-3693-4219-8f60-39968d906099}">
|
||||
<property name="position">
|
||||
<value>2.3799999999999999</value>
|
||||
</property>
|
||||
<property name="value">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MixerBusFader" id="{3581fb60-fe20-471b-86ec-5d23a822ea7c}" />
|
||||
</objects>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{e23d01ca-9dc7-4a3f-8aa1-c370f97965d5}">
|
||||
<property name="maximumDistance">
|
||||
<value>2000</value>
|
||||
<value>90</value>
|
||||
</property>
|
||||
</object>
|
||||
<object class="MarkerTrack" id="{ecba1195-df31-4d27-8002-548a57a90149}" />
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
<destination>{903e03c7-f297-4004-9b93-556a9754c8af}</destination>
|
||||
</relationship>
|
||||
<relationship name="output">
|
||||
<destination>{c751273e-6b77-46b1-8c19-a99f6f08e61e}</destination>
|
||||
<destination>{ce68ea24-56d6-4af5-a850-87bda0652ecc}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="EventAutomatableProperties" id="{e1ff85dd-ca10-4184-b907-cebce893b822}" />
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<objects serializationModel="Studio.02.03.00">
|
||||
<object class="ParameterPreset" id="{09b7a108-c526-4e56-a535-055b90acdc95}">
|
||||
<property name="name">
|
||||
<value>EasyBoltLogic</value>
|
||||
</property>
|
||||
<relationship name="folder">
|
||||
<destination>{72821a40-1f9b-449e-9f29-45c4d8800c81}</destination>
|
||||
</relationship>
|
||||
<relationship name="parameter">
|
||||
<destination>{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}</destination>
|
||||
</relationship>
|
||||
</object>
|
||||
<object class="GameParameter" id="{c6ed1c8a-6317-4b6e-9c2f-a9de5d998f05}">
|
||||
<property name="parameterType">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<value>2</value>
|
||||
</property>
|
||||
<property name="enumerationLabels">
|
||||
<value>Driving</value>
|
||||
<value>Stopping</value>
|
||||
</property>
|
||||
<property name="initialValue">
|
||||
<value>0</value>
|
||||
</property>
|
||||
</object>
|
||||
</objects>
|
||||
Binary file not shown.
@@ -24,6 +24,10 @@
|
||||
"name": "destro",
|
||||
"score": 332.0
|
||||
},
|
||||
{
|
||||
"name": "er",
|
||||
"score": 164.0
|
||||
},
|
||||
{
|
||||
"name": "fdgdggdd",
|
||||
"score": 148.0
|
||||
|
||||
Reference in New Issue
Block a user