Some fixes made, object picking logic added

This commit is contained in:
Timur Nizamov
2025-12-21 00:01:28 +02:00
parent 27d5fdd68c
commit 50dba2cd81
82 changed files with 1464 additions and 1390 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -29,8 +29,6 @@ public class FirstPersonOcclusion : MonoBehaviour
// ADDED: now stores ALL event instances that must be occluded
private List<EventInstance> managedInstances = new List<EventInstance>();
public void InitialiseWithInstance(EventInstance instance)
{
AudioOccluded = instance;
@@ -42,6 +40,8 @@ public class FirstPersonOcclusion : MonoBehaviour
GetComponent<Rigidbody>()
);
//instance.setParameterByName("Occlusion", 1f, true);
managedInstances.Add(AudioOccluded); // ADDED
AudioOccluded.getDescription(out AudioDes);
@@ -63,7 +63,6 @@ public class FirstPersonOcclusion : MonoBehaviour
}
}
private IEnumerator Start()
{
// If already initialised, skip internal creation

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -71,7 +71,7 @@
<value>0</value>
</property>
<property name="minimumDistance">
<value>5</value>
<value>2.20000005</value>
</property>
</object>
<object class="MarkerTrack" id="{2981f918-8c6d-4dc1-9511-505b40dbc05d}" />
@@ -566,7 +566,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -575,7 +574,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -585,7 +583,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -663,7 +661,7 @@
<value>ApplyPath</value>
</property>
<property name="value">
<value>true</value>
<value>false</value>
</property>
</object>
<object class="IntPluginParameter" id="{a96a2ce7-6131-4de9-a382-662f0f8b3509}">
@@ -696,7 +694,7 @@
<value>DAType</value>
</property>
<property name="value">
<value>2</value>
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -710,7 +708,7 @@
<value>DAMinDist</value>
</property>
<property name="value">
<value>5</value>
<value>2</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -886,7 +884,7 @@
<value>PathBinaural</value>
</property>
<property name="value">
<value>true</value>
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{989ea430-8d9a-4b2d-878c-5cfcab6ecce4}">
@@ -904,7 +902,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -921,7 +918,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -26,7 +26,6 @@
<destination>{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}</destination>
</relationship>
<relationship name="groupTracks">
<destination>{08383708-a4ec-4ed4-b239-3bc763c83cd0}</destination>
<destination>{01fb89ff-00b4-412b-a565-42dfb0192e83}</destination>
</relationship>
<relationship name="timeline">
@@ -76,21 +75,11 @@
</property>
</object>
<object class="MarkerTrack" id="{ebe51d68-94ca-4c6c-8e0a-5c76a6adec53}" />
<object class="GroupTrack" id="{08383708-a4ec-4ed4-b239-3bc763c83cd0}">
<relationship name="modules">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}</destination>
</relationship>
</object>
<object class="GroupTrack" id="{01fb89ff-00b4-412b-a565-42dfb0192e83}">
<relationship name="modules">
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
<destination>{1fb33aff-5a47-41a7-8886-4ddaa54f56fe}</destination>
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
<destination>{98cd4dab-daa1-4146-a436-142a40961319}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{eddef13d-d55e-4eb2-94c9-4584ca5065b1}</destination>
@@ -99,7 +88,6 @@
<object class="Timeline" id="{a9418c0a-c15c-4523-8a31-2acc9d4bee1f}">
<relationship name="modules">
<destination>{a8cea37b-82da-43cf-9f42-68ea15f177e4}</destination>
<destination>{98cd4dab-daa1-4146-a436-142a40961319}</destination>
</relationship>
<relationship name="markers">
<destination>{f0bec365-f358-476d-8289-fab527cda203}</destination>
@@ -148,42 +136,6 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{754a1107-5283-4e76-8000-9e2a43fe795e}" />
<object class="TransitionSourceSound" id="{a3dd34ab-5519-4684-89b1-90ed93b19fc0}">
<property name="length">
<value>0.16</value>
</property>
<relationship name="fadeOutCurve">
<destination>{137e4029-8d0d-4168-892b-32591518556c}</destination>
</relationship>
</object>
<object class="TransitionDestinationSound" id="{82c380ac-3a25-4e9b-bc81-6dc156330c85}">
<property name="start">
<value>0.040000000000000008</value>
</property>
<property name="length">
<value>0.15999999999999998</value>
</property>
<relationship name="fadeInCurve">
<destination>{f078fc0d-b883-4d15-aaaa-50c2658826b8}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{e0103a04-d0f3-4dc8-8554-5ea6923f3d4b}">
<property name="volume">
<value>-18.5</value>
</property>
<property name="name">
<value>Audio 1</value>
</property>
<relationship name="effectChain">
<destination>{aff0a84f-2382-4445-ab2d-ff9fa115a0be}</destination>
</relationship>
<relationship name="panner">
<destination>{ffea0a28-2773-40c5-870b-a8ca2347662b}</destination>
</relationship>
<relationship name="output">
<destination>{d081d164-9b22-49da-9d30-6446d5c1a60a}</destination>
</relationship>
</object>
<object class="TransitionSourceSound" id="{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}">
<property name="length">
<value>0.20000000000000001</value>
@@ -211,20 +163,6 @@
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
</relationship>
</object>
<object class="SingleSound" id="{98cd4dab-daa1-4146-a436-142a40961319}">
<property name="start">
<value>31</value>
</property>
<property name="length">
<value>26.499124999999999</value>
</property>
<property name="timelockedOffset">
<value>14</value>
</property>
<relationship name="audioFile">
<destination>{dc56e31e-3a5b-474d-b2ee-9dd3d7e21633}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{eddef13d-d55e-4eb2-94c9-4584ca5065b1}">
<property name="volume">
<value>-8</value>
@@ -268,34 +206,6 @@
</object>
<object class="MixerBusPanner" id="{0c8d85ac-9823-45e9-8a9c-cffb9f9ef6b6}" />
<object class="MixerBusFader" id="{8334671c-21ec-4b08-a65f-03e78fa4f8f7}" />
<object class="TransitionSourceFadeOutCurve" id="{137e4029-8d0d-4168-892b-32591518556c}">
<relationship name="startPoint">
<destination>{9c5a515b-35dd-4601-89ac-9e74c5694f05}</destination>
</relationship>
<relationship name="endPoint">
<destination>{7b0015c3-7fcf-43bc-9586-7cef44d552cb}</destination>
</relationship>
<relationship name="relatedModule">
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
</relationship>
</object>
<object class="TransitionDestinationFadeInCurve" id="{f078fc0d-b883-4d15-aaaa-50c2658826b8}">
<relationship name="startPoint">
<destination>{00cd5384-21a8-452e-ab9f-b19092091f80}</destination>
</relationship>
<relationship name="endPoint">
<destination>{9e261d01-9705-444c-bc81-f44c9e53c36a}</destination>
</relationship>
<relationship name="relatedModule">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{aff0a84f-2382-4445-ab2d-ff9fa115a0be}">
<relationship name="effects">
<destination>{acbfc70b-5c7d-4114-9118-e03998f3e944}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{ffea0a28-2773-40c5-870b-a8ca2347662b}" />
<object class="TransitionSourceFadeOutCurve" id="{9d3a1c27-6225-4881-99bc-b38efb6e1cd7}">
<relationship name="startPoint">
<destination>{0d032252-22a1-4e42-8761-5c2dd3ea776f}</destination>
@@ -323,8 +233,6 @@
<value>0.20000000000000001</value>
</property>
<relationship name="modules">
<destination>{a3dd34ab-5519-4684-89b1-90ed93b19fc0}</destination>
<destination>{82c380ac-3a25-4e9b-bc81-6dc156330c85}</destination>
<destination>{2f17962e-8fa8-478d-93c5-8d2832a11033}</destination>
<destination>{7ab5d73b-9e0b-47cd-a951-4fa77011b413}</destination>
<destination>{432b9f3a-edeb-40b6-9be4-843fcbf5bf0d}</destination>
@@ -348,45 +256,6 @@
<destination>{676d5667-e7ad-4c84-bb48-8a8eb04e02d8}</destination>
</relationship>
</object>
<object class="AutomationPoint" id="{9c5a515b-35dd-4601-89ac-9e74c5694f05}">
<property name="position">
<value>0.040000000000000008</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>0.0865036622</value>
</property>
</object>
<object class="AutomationPoint" id="{7b0015c3-7fcf-43bc-9586-7cef44d552cb}">
<property name="position">
<value>0.16</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="AutomationPoint" id="{00cd5384-21a8-452e-ab9f-b19092091f80}">
<property name="position">
<value>0.040000000000000008</value>
</property>
<property name="value">
<value>0</value>
</property>
<property name="curveShape">
<value>-0.16711843</value>
</property>
</object>
<object class="AutomationPoint" id="{9e261d01-9705-444c-bc81-f44c9e53c36a}">
<property name="position">
<value>0.16</value>
</property>
<property name="value">
<value>1</value>
</property>
</object>
<object class="MixerBusFader" id="{acbfc70b-5c7d-4114-9118-e03998f3e944}" />
<object class="AutomationPoint" id="{0d032252-22a1-4e42-8761-5c2dd3ea776f}">
<property name="position">
<value>0.040000000000000008</value>

View File

@@ -73,8 +73,11 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{01a7c570-5ee5-451c-b338-2928032226a4}">
<property name="minimumDistance">
<value>4.80000019</value>
</property>
<property name="maximumDistance">
<value>50</value>
<value>150</value>
</property>
</object>
<object class="MarkerTrack" id="{831858f0-f689-4710-9a40-3246f1e5b327}" />
@@ -213,6 +216,9 @@
</relationship>
</object>
<object class="EventMixerGroup" id="{a600a068-0e8a-488c-b911-1f7c6baf5ba6}">
<property name="volume">
<value>1</value>
</property>
<property name="name">
<value>Engine1</value>
</property>
@@ -254,7 +260,7 @@
</object>
<object class="EventMixerGroup" id="{d9d0ff11-95d8-430d-921a-2b6e7fc08bc7}">
<property name="volume">
<value>4</value>
<value>5</value>
</property>
<property name="name">
<value>Engine2</value>
@@ -293,6 +299,9 @@
</relationship>
</object>
<object class="EventMixerGroup" id="{da10e6fc-66e6-44ac-b520-558594949a15}">
<property name="volume">
<value>1</value>
</property>
<property name="name">
<value>Tires</value>
</property>
@@ -328,7 +337,7 @@
</object>
<object class="EventMixerGroup" id="{0269f0e3-c25f-495c-ba7e-6f9a85fd2aaf}">
<property name="volume">
<value>-11</value>
<value>-10</value>
</property>
<property name="name">
<value>Tires</value>
@@ -604,7 +613,7 @@
<value>0.0042372881355932203</value>
</property>
<property name="value">
<value>10</value>
<value>8.5</value>
</property>
</object>
<object class="AutomationPoint" id="{1d83cb29-af27-4fa2-9f11-8a54ee902d9b}">
@@ -612,7 +621,7 @@
<value>1</value>
</property>
<property name="value">
<value>-57.5</value>
<value>-65</value>
</property>
</object>
<object class="AutomationPoint" id="{a801353e-0fa9-448d-a0c8-f46b38d439fa}">
@@ -620,7 +629,7 @@
<value>0.95000000000000007</value>
</property>
<property name="value">
<value>-5</value>
<value>-6.5</value>
</property>
</object>
<object class="Automator" id="{f1181d82-1315-4d69-a407-c1a4efa1be76}">
@@ -757,7 +766,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -766,7 +774,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -776,7 +783,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>1</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -887,7 +894,7 @@
<value>DAType</value>
</property>
<property name="value">
<value>0</value>
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -912,7 +919,7 @@
<value>DAMaxDist</value>
</property>
<property name="value">
<value>50</value>
<value>150</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,10000.000000)}</value>
@@ -1095,7 +1102,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -1112,7 +1118,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -28,6 +28,8 @@
<relationship name="groupTracks">
<destination>{b6d787ea-026c-49db-bee4-01550cc36bf9}</destination>
<destination>{4eb86390-e64d-463b-bdba-2a7682e2322c}</destination>
<destination>{dd8f7e63-e5b3-4f18-8a1e-7a0d9591b496}</destination>
<destination>{064af21f-8814-4856-90fe-be61f0f6c4f9}</destination>
</relationship>
<relationship name="timeline">
<destination>{f0b57de9-108f-440e-a7b3-2557f9eee929}</destination>
@@ -58,9 +60,15 @@
</relationship>
</object>
<object class="EventAutomatableProperties" id="{3ddbb4f1-4569-45de-9f6b-4cdda476e6ff}">
<property name="maxVoices">
<value>5</value>
</property>
<property name="maximumDistance">
<value>5</value>
</property>
<property name="triggerCooldown">
<value>180</value>
</property>
</object>
<object class="MarkerTrack" id="{5b392c94-7eca-49b3-b2f4-e576268078c3}" />
<object class="GroupTrack" id="{b6d787ea-026c-49db-bee4-01550cc36bf9}">
@@ -79,10 +87,28 @@
<destination>{4ff7b258-d435-4151-a173-400ba4d502aa}</destination>
</relationship>
</object>
<object class="GroupTrack" id="{dd8f7e63-e5b3-4f18-8a1e-7a0d9591b496}">
<relationship name="modules">
<destination>{cf16f4ec-2c5f-4338-84a3-e949f2b90c93}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{e686c2da-5b9d-4851-8298-6e506661e4c6}</destination>
</relationship>
</object>
<object class="GroupTrack" id="{064af21f-8814-4856-90fe-be61f0f6c4f9}">
<relationship name="modules">
<destination>{c8310719-9e2e-4cd3-a638-7b0ddce32265}</destination>
</relationship>
<relationship name="mixerGroup">
<destination>{aea73025-f38c-479e-9a5e-549ef12e4a5f}</destination>
</relationship>
</object>
<object class="Timeline" id="{f0b57de9-108f-440e-a7b3-2557f9eee929}">
<relationship name="modules">
<destination>{9cef6c82-5749-4062-9be0-93dd59561e5b}</destination>
<destination>{440457f2-2ee6-4989-90b1-8c2f5c45dc22}</destination>
<destination>{cf16f4ec-2c5f-4338-84a3-e949f2b90c93}</destination>
<destination>{c8310719-9e2e-4cd3-a638-7b0ddce32265}</destination>
</relationship>
</object>
<object class="EventMixerMaster" id="{09541088-24f8-4cef-ad4f-6e713e129f95}">
@@ -124,7 +150,7 @@
</object>
<object class="EventMixerGroup" id="{b18f6648-3d92-415d-9d68-cab509ba1252}">
<property name="volume">
<value>10</value>
<value>-80</value>
</property>
<property name="name">
<value>Audio 1</value>
@@ -158,7 +184,7 @@
</object>
<object class="EventMixerGroup" id="{4ff7b258-d435-4151-a173-400ba4d502aa}">
<property name="volume">
<value>5</value>
<value>-80</value>
</property>
<property name="name">
<value>Audio 2</value>
@@ -173,10 +199,74 @@
<destination>{09541088-24f8-4cef-ad4f-6e713e129f95}</destination>
</relationship>
</object>
<object class="SingleSound" id="{cf16f4ec-2c5f-4338-84a3-e949f2b90c93}">
<property name="length">
<value>0.114</value>
</property>
<property name="timelockedOffset">
<value>0.53815963298580316</value>
</property>
<relationship name="fadeOutCurve">
<destination>{19e79741-2f90-40c0-a78e-eae3b054cddb}</destination>
</relationship>
<relationship name="audioFile">
<destination>{df13839f-49ad-4d32-bf08-e5d2476a63bc}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{e686c2da-5b9d-4851-8298-6e506661e4c6}">
<property name="volume">
<value>-3</value>
</property>
<property name="name">
<value>Audio 3</value>
</property>
<relationship name="effectChain">
<destination>{0eb05956-d7d7-4d18-a672-ea2573f3b0f0}</destination>
</relationship>
<relationship name="panner">
<destination>{81b41608-a0ba-4408-a2c9-ba008937bb5f}</destination>
</relationship>
<relationship name="output">
<destination>{09541088-24f8-4cef-ad4f-6e713e129f95}</destination>
</relationship>
</object>
<object class="SingleSound" id="{c8310719-9e2e-4cd3-a638-7b0ddce32265}">
<property name="length">
<value>0.059999999999999998</value>
</property>
<property name="timelockedOffset">
<value>0.043999999999999984</value>
</property>
<property name="pitch">
<value>2</value>
</property>
<relationship name="fadeOutCurve">
<destination>{704066f6-2894-4ee9-9c88-06c5d64c4de1}</destination>
</relationship>
<relationship name="audioFile">
<destination>{81a1b2dc-6cbd-44db-bf05-d77ed1fc9cfa}</destination>
</relationship>
</object>
<object class="EventMixerGroup" id="{aea73025-f38c-479e-9a5e-549ef12e4a5f}">
<property name="volume">
<value>7.5</value>
</property>
<property name="name">
<value>Audio 4</value>
</property>
<relationship name="effectChain">
<destination>{ae4cea82-1a57-4767-94e1-1dcbba772f81}</destination>
</relationship>
<relationship name="panner">
<destination>{2bd8cae6-f432-4acb-ac1c-3ee46d792383}</destination>
</relationship>
<relationship name="output">
<destination>{09541088-24f8-4cef-ad4f-6e713e129f95}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{0fee013d-657b-47c5-85d1-475195a25a23}">
<relationship name="effects">
<destination>{c319c0a8-a514-4c73-9d0a-ad2115e4a878}</destination>
<destination>{8635c676-2112-4df3-b486-33adac75ca7b}</destination>
<destination>{6aca8378-0c63-4c5b-8054-d9ede9ab7b34}</destination>
<destination>{30aa5d38-76ab-427b-8276-aa4a010da3fa}</destination>
</relationship>
@@ -211,25 +301,39 @@
</relationship>
</object>
<object class="MixerBusPanner" id="{04226a84-5ab9-4b57-9782-aa2f5b3ba995}" />
<object class="MixerBusFader" id="{c319c0a8-a514-4c73-9d0a-ad2115e4a878}" />
<object class="CompressorEffect" id="{8635c676-2112-4df3-b486-33adac75ca7b}">
<property name="threshold">
<value>-34</value>
</property>
<property name="ratio">
<value>4.80000019</value>
</property>
<property name="attackTime">
<value>0.100000001</value>
</property>
<property name="releaseTime">
<value>96</value>
</property>
<property name="gain">
<value>4.5</value>
</property>
<object class="FadeCurve" id="{19e79741-2f90-40c0-a78e-eae3b054cddb}">
<relationship name="startPoint">
<destination>{563c88fa-357e-40ac-b99c-f1c26d9e2a29}</destination>
</relationship>
<relationship name="endPoint">
<destination>{1d09a557-a1a7-434d-935b-33c5af975277}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{0eb05956-d7d7-4d18-a672-ea2573f3b0f0}">
<relationship name="effects">
<destination>{aec35730-b65b-454d-bec7-2d59f3e6caa5}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{81b41608-a0ba-4408-a2c9-ba008937bb5f}" />
<object class="FadeCurve" id="{704066f6-2894-4ee9-9c88-06c5d64c4de1}">
<relationship name="startPoint">
<destination>{5fe0b1cc-eecb-4fb6-8f26-13b0d17b1068}</destination>
</relationship>
<relationship name="endPoint">
<destination>{879c8451-6792-48eb-8592-ff7035a15c58}</destination>
</relationship>
</object>
<object class="MixerBusEffectChain" id="{ae4cea82-1a57-4767-94e1-1dcbba772f81}">
<relationship name="effects">
<destination>{9306f012-82a4-47b0-8366-3e57c8279aac}</destination>
</relationship>
</object>
<object class="MixerBusPanner" id="{2bd8cae6-f432-4acb-ac1c-3ee46d792383}" />
<object class="MixerBusFader" id="{c319c0a8-a514-4c73-9d0a-ad2115e4a878}" />
<object class="ThreeEQEffect" id="{6aca8378-0c63-4c5b-8054-d9ede9ab7b34}">
<property name="lowGain">
<value>-2.5</value>
</property>
<property name="highGain">
<value>3.5</value>
</property>
@@ -279,6 +383,46 @@
</property>
</object>
<object class="MixerBusFader" id="{526e1a90-4802-4580-a9b4-1ba7834eebac}" />
<object class="AutomationPoint" id="{563c88fa-357e-40ac-b99c-f1c26d9e2a29}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>0.000932518044</value>
</property>
</object>
<object class="AutomationPoint" id="{1d09a557-a1a7-434d-935b-33c5af975277}">
<property name="position">
<value>0.11399999999999999</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="MixerBusFader" id="{aec35730-b65b-454d-bec7-2d59f3e6caa5}" />
<object class="AutomationPoint" id="{5fe0b1cc-eecb-4fb6-8f26-13b0d17b1068}">
<property name="position">
<value>0</value>
</property>
<property name="value">
<value>1</value>
</property>
<property name="curveShape">
<value>-0.124480329</value>
</property>
</object>
<object class="AutomationPoint" id="{879c8451-6792-48eb-8592-ff7035a15c58}">
<property name="position">
<value>0.059999999999999998</value>
</property>
<property name="value">
<value>0</value>
</property>
</object>
<object class="MixerBusFader" id="{9306f012-82a4-47b0-8366-3e57c8279aac}" />
<object class="Plugin" id="{15daf3d0-885d-490a-ac0b-9502e88b021c}">
<property name="identifier">
<value>Steam Audio Spatializer</value>
@@ -326,7 +470,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -335,7 +478,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -536,7 +678,7 @@
<value>DipoleWeight</value>
</property>
<property name="value">
<value>0.774999976</value>
<value>0.734999955</value>
</property>
<property name="curve">
<value>{(0.000000,0.000000)(1.000000,1.000000)}</value>
@@ -664,7 +806,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -681,7 +822,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -209,7 +209,6 @@
<property name="name">
<value>SourcePos</value>
</property>
<property name="value" />
<property name="dataType">
<value>-2</value>
</property>
@@ -218,7 +217,6 @@
<property name="name">
<value>OverallGain</value>
</property>
<property name="value" />
<property name="dataType">
<value>-1</value>
</property>
@@ -228,7 +226,7 @@
<value>ApplyDA</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -256,7 +254,7 @@
<value>ApplyDir</value>
</property>
<property name="value">
<value>0</value>
<value>2</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -306,7 +304,7 @@
<value>ApplyPath</value>
</property>
<property name="value">
<value>true</value>
<value>false</value>
</property>
</object>
<object class="IntPluginParameter" id="{5023208c-1c24-4187-9345-fef60e0dfba3}">
@@ -339,7 +337,7 @@
<value>DAType</value>
</property>
<property name="value">
<value>2</value>
<value>1</value>
</property>
<property name="minimumValue">
<value>0</value>
@@ -529,7 +527,7 @@
<value>PathBinaural</value>
</property>
<property name="value">
<value>true</value>
<value>false</value>
</property>
</object>
<object class="FloatPluginParameter" id="{78b38d80-0b16-4b16-9f05-c11ef251df5a}">
@@ -547,7 +545,6 @@
<property name="name">
<value>SimOutputs</value>
</property>
<property name="value" />
<property name="dataType">
<value>0</value>
</property>
@@ -564,7 +561,6 @@
<property name="name">
<value>DistRange</value>
</property>
<property name="value" />
<property name="dataType">
<value>-6</value>
</property>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<objects serializationModel="Studio.02.03.00">
<object class="EventFolder" id="{dde91308-d50f-4a55-aaba-77eab8d7dad8}">
<property name="name">
<value>GrabbedItems</value>
</property>
<relationship name="folder">
<destination>{bb0dfa19-2848-45c1-b83a-f212448dc5ad}</destination>
</relationship>
</object>
</objects>

View File

@@ -24,10 +24,10 @@
<value>cursorPosition</value>
</property>
<property name="speedAscending">
<value>1.6000000238418579</value>
<value>1.1000000238418579</value>
</property>
<property name="speedDescending">
<value>1.5</value>
<value>1.1000000238418579</value>
</property>
<property name="asymmetric">
<value>true</value>

View File

@@ -4,6 +4,10 @@
"name": "iopprnbb ,,p",
"score": 491.0
},
{
"name": "ppppVBBPPP",
"score": 478.0
},
{
"name": "mmmoo",
"score": 473.0
@@ -16,6 +20,10 @@
"name": "jtimu",
"score": 465.0
},
{
"name": "llllpttrgje",
"score": 456.0
},
{
"name": "DABESTEST",
"score": 451.0
@@ -51,14 +59,6 @@
{
"name": " ",
"score": 413.0
},
{
"name": "timo",
"score": 412.0
},
{
"name": "Dabest",
"score": 407.0
}
]
}