Gamepad Input and Rebinding

master
Sascha 2023-02-13 12:42:25 +07:00
parent 88b3c7cb95
commit 21f991676a
307 changed files with 17502 additions and 29688 deletions

@ -177,7 +177,7 @@
},
{
"name": "",
"id": "ba1d581e-0e18-44b6-b9eb-e5907691776f",
"id": "5d2a94f5-5e2c-4472-9ccf-2a53915981fd",
"path": "<Gamepad>/buttonSouth",
"interactions": "",
"processors": "",

File diff suppressed because it is too large Load Diff

@ -1068,7 +1068,7 @@ MonoBehaviour:
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_SelectedColor: {r: 0.19841069, g: 0.6775906, b: 0, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
@ -2003,7 +2003,7 @@ MonoBehaviour:
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_SelectedColor: {r: 0.19841069, g: 0.6775906, b: 0, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1

@ -12,7 +12,10 @@ public class GameInput : MonoBehaviour {
MoveRight,
Interact,
InteractAlternate,
Pause
Pause,
Gamepad_Interact,
Gamepad_InteractAlternate,
Gamepad_Pause
}
private const string PlayerPrefsBindings = "InputBindings";
@ -47,7 +50,8 @@ public class GameInput : MonoBehaviour {
}
public string GetBindingText(Binding binding) {
switch (binding) {
switch (binding)
{
default:
case Binding.MoveUp:
return playerInputActions.Player.Move.bindings[1].ToDisplayString();
@ -63,6 +67,12 @@ public class GameInput : MonoBehaviour {
return playerInputActions.Player.InteractAlternate.bindings[0].ToDisplayString();
case Binding.Pause:
return playerInputActions.Player.Pause.bindings[0].ToDisplayString();
case Binding.Gamepad_Interact:
return playerInputActions.Player.Interact.bindings[1].ToDisplayString();
case Binding.Gamepad_InteractAlternate:
return playerInputActions.Player.InteractAlternate.bindings[1].ToDisplayString();
case Binding.Gamepad_Pause:
return playerInputActions.Player.Pause.bindings[1].ToDisplayString();
}
}
@ -72,7 +82,8 @@ public class GameInput : MonoBehaviour {
InputAction inputAction;
int bindingIndex;
switch (binding) {
switch (binding)
{
default:
case Binding.MoveUp:
inputAction = playerInputActions.Player.Move;
@ -102,6 +113,18 @@ public class GameInput : MonoBehaviour {
inputAction = playerInputActions.Player.Pause;
bindingIndex = 0;
break;
case Binding.Gamepad_Interact:
inputAction = playerInputActions.Player.Interact;
bindingIndex = 1;
break;
case Binding.Gamepad_InteractAlternate:
inputAction = playerInputActions.Player.InteractAlternate;
bindingIndex = 1;
break;
case Binding.Gamepad_Pause:
inputAction = playerInputActions.Player.Interact;
bindingIndex = 1;
break;
}
inputAction.PerformInteractiveRebinding(bindingIndex).OnComplete(callback => {

@ -95,32 +95,36 @@ public class Player : MonoBehaviour, IKitchenObjectParent {
public bool IsWalking() => isWalking;
private static bool CanMove(Vector3 position, Vector3 moveDir, float moveDistance) =>
!Physics.CapsuleCast(position, position + Vector3.up * playerHeight, playerRadius, moveDir, moveDistance);
private void HandleMovement() {
inputVector = GameInput.GetMovementVectorNormalized();
moveDir = new(inputVector.x, 0, inputVector.y);
float moveDistance = moveSpeed * Time.deltaTime;
if (!CanMove(transform.position, moveDir, moveDistance)) {
bool canMove = !Physics.CapsuleCast(transform.position, transform.position + Vector3.up * playerHeight, playerRadius, moveDir, moveDistance);
if (!canMove) {
// Cannot move towars moveDir
//Attempt only x movement
Vector3 moveDirX = new Vector3(moveDir.x, 0, 0).normalized;
if (CanMove(transform.position, moveDirX, moveDistance)) {
canMove = (moveDir.x < -.5f || moveDir.x > +.5f) && !Physics.CapsuleCast(transform.position, transform.position + (Vector3.up * playerHeight), playerRadius, moveDir, moveDistance);
if (canMove) {
//Can move only on the X
MovePlayer(moveDirX, moveDistance);
}
else {
//Cannot move only on the X
//Attempt only Z movement
Vector3 moveDirZ = new Vector3(0, 0, moveDir.z).normalized;
if (CanMove(transform.position, moveDirZ, moveDistance))
canMove = (moveDir.z < -.5f || moveDir.z > +.5f) && !Physics.CapsuleCast(transform.position, transform.position + (Vector3.up * playerHeight), playerRadius, moveDir, moveDistance);
if (canMove) {
//Can move only on the Z
MovePlayer(moveDirZ, moveDistance);
}
else {
//Cannot move in any direction
}
}
}
else {

@ -11,7 +11,10 @@ public class GamePauseUI : MonoBehaviour {
private void Awake() {
resumeButton.onClick.AddListener(() => KitchenGameManager.Instance.TogglePauseGame());
optionsButton.onClick.AddListener(() => OptionsUI.Instance.Show());
optionsButton.onClick.AddListener(() => {
Hide();
OptionsUI.Instance.Show(Show);
});
mainMenuButton.onClick.AddListener(() => Loader.Load(Loader.Scene.MainMenuScene));
}
@ -25,7 +28,11 @@ public class GamePauseUI : MonoBehaviour {
private void KitchenGameManager_OnGamePaused(object sender, EventArgs e) => Show();
private void Show() => gameObject.SetActive(true);
private void Show()
{
gameObject.SetActive(true);
resumeButton.Select();
}
private void Hide() => gameObject.SetActive(false);
}

@ -5,6 +5,9 @@ public class MainMenuUI : MonoBehaviour {
[SerializeField] private Button playButton;
[SerializeField] private Button quitButton;
private void Start(){
playButton.Select();
}
private void Awake() {
playButton.onClick.AddListener(() => Loader.Load(Loader.Scene.GameScene));
quitButton.onClick.AddListener(Application.Quit);

@ -16,6 +16,9 @@ public class OptionsUI : MonoBehaviour {
[SerializeField] private Button interactButton;
[SerializeField] private Button interactAlternateButton;
[SerializeField] private Button pauseButton;
[SerializeField] private Button gamepadInteractButton;
[SerializeField] private Button gamepadInteractAlternateButton;
[SerializeField] private Button gamepadPauseButton;
[SerializeField] private TextMeshProUGUI soundEffectsText;
[SerializeField] private TextMeshProUGUI musicText;
[SerializeField] private TextMeshProUGUI moveUpText;
@ -25,8 +28,13 @@ public class OptionsUI : MonoBehaviour {
[SerializeField] private TextMeshProUGUI interactText;
[SerializeField] private TextMeshProUGUI interactAlternateText;
[SerializeField] private TextMeshProUGUI pauseText;
[SerializeField] private TextMeshProUGUI gamepadInteractText;
[SerializeField] private TextMeshProUGUI gamepadInteractAlternateText;
[SerializeField] private TextMeshProUGUI gamepadPauseText;
[SerializeField] private Transform pressToRebindKeyTransform;
private Action onCloseButtonAction;
private void Awake() {
Instance = this;
soundEffectsButton.onClick.AddListener(() => {
@ -37,7 +45,10 @@ public class OptionsUI : MonoBehaviour {
MusicManager.Instance.ChangeVolume();
UpdateVisual();
});
closeButton.onClick.AddListener(Hide);
closeButton.onClick.AddListener(() => {
Hide();
onCloseButtonAction();
});
moveUpButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.MoveUp));
moveDownButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.MoveDown));
@ -46,6 +57,9 @@ public class OptionsUI : MonoBehaviour {
interactButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.Interact));
interactAlternateButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.InteractAlternate));
pauseButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.Pause));
gamepadInteractButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.Gamepad_Interact));
gamepadInteractAlternateButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.Gamepad_InteractAlternate));
gamepadPauseButton.onClick.AddListener(() => RebindBinding(GameInput.Binding.Gamepad_Pause));
}
private void Start() {
@ -68,9 +82,17 @@ public class OptionsUI : MonoBehaviour {
interactText.text = GameInput.Instance.GetBindingText(GameInput.Binding.Interact);
interactAlternateText.text = GameInput.Instance.GetBindingText(GameInput.Binding.InteractAlternate);
pauseText.text = GameInput.Instance.GetBindingText(GameInput.Binding.Pause);
gamepadInteractText.text = GameInput.Instance.GetBindingText(GameInput.Binding.Gamepad_Interact);
gamepadInteractAlternateText.text = GameInput.Instance.GetBindingText(GameInput.Binding.Gamepad_InteractAlternate);
gamepadPauseText.text = GameInput.Instance.GetBindingText(GameInput.Binding.Gamepad_Pause);
}
public void Show() => gameObject.SetActive(true);
public void Show(Action onCloseButton)
{
onCloseButtonAction = onCloseButton;
gameObject.SetActive(true);
closeButton.Select();
}
private void Hide() => gameObject.SetActive(false);

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

@ -26,7 +26,7 @@
{
"Annotation": "BuildPlayerDataGenerator Library/BuildPlayerData/Editor/TypeDb-All.json",
"DisplayName": "Extracting script serialization layouts",
"Action": "\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Assembly-CSharp.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Cinemachine.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.Burst.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.InputSystem.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.Mathematics.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.2D.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.TextMeshPro.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/UnityEngine.TestRunner.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/UnityEngine.UI.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Managed/UnityEngine\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/compat/2.1.0/shims/netfx\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/EditorExtensions\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/Extensions/2.0.0\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/ref/2.1.0\" -s=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies\" -s=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2\" -s=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen\" -s=\"/mnt/Daten/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom\" -o=\"Library/BuildPlayerData/Editor\" -rn=\"\" -tn=\"TypeDb-All.json\"",
"Action": "\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Assembly-CSharp.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Cinemachine.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.Burst.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.InputSystem.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.Mathematics.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.2D.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/Unity.TextMeshPro.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/UnityEngine.TestRunner.dll\" -a=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies/UnityEngine.UI.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll\" -a=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Managed/UnityEngine\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/compat/2.1.0/shims/netfx\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/EditorExtensions\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/Extensions/2.0.0\" -s=\"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/NetStandard/ref/2.1.0\" -s=\"/mnt/Daten/coding/unity/KitchenChaos/Library/ScriptAssemblies\" -s=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2\" -s=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen\" -s=\"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom\" -o=\"Library/BuildPlayerData/Editor\" -rn=\"\" -tn=\"TypeDb-All.json\"",
"Inputs": [
"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/netcorerun/netcorerun",
"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe",
@ -45,12 +45,12 @@
"Library/ScriptAssemblies/Unity.TextMeshPro.dll",
"Library/ScriptAssemblies/UnityEngine.TestRunner.dll",
"Library/ScriptAssemblies/UnityEngine.UI.dll",
"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll",
"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll",
"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll",
"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll",
"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll",
"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll",
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll",
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll",
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll",
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll",
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
],
"InputFlags": [
0,
@ -210,31 +210,31 @@
],
"StatSignatures": [
{
"File": "Assets/csc.rsp"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll"
},
{
"File": "Assets/mcs.rsp"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll"
},
{
"File": "Library/Bee/2400b0aEDbgSkipCompile-inputdata.json"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll"
},
{
"File": "Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Mdb.dll"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll"
},
{
"File": "Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Pdb.dll"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll"
},
{
"File": "Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.Rocks.dll"
"File": "/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
},
{
"File": "Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.CodeGen/Unity.Burst.Cecil.dll"
"File": "Assets/csc.rsp"
},
{
"File": "Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll"
"File": "Assets/mcs.rsp"
},
{
"File": "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
"File": "Library/Bee/2400b0aEDbgSkipCompile-inputdata.json"
},
{
"File": "Library/ScriptAssemblies/Assembly-CSharp.dll"

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -300,7 +300,7 @@
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.WindModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.XRModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.dll"
-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Cinemachine.ref.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.Burst.ref.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.InputSystem.ref.dll"

@ -307,7 +307,7 @@
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.WindModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.XRModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.dll"
-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.InputSystem.ref.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.RenderPipelines.Core.Runtime.ref.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.RenderPipelines.Universal.2D.Runtime.ref.dll"
@ -315,86 +315,86 @@
-r:"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.ref.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/AssemblyInfo.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/Cinemachine3rdPersonAim.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineBlendListCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineBrain.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineCameraOffset.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineClearShot.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineCollider.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineConfiner.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineConfiner2D.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineDollyCart.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineExternalCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineFollowZoom.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineFreeLook.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineMixingCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePath.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePipeline.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePixelPerfect.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineRecomposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineSmoothPath.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineStateDrivenCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineStoryboard.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineTargetGroup.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineVirtualCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/Cinemachine3rdPersonFollow.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineBasicMultiChannelPerlin.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineComposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineFramingTransposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineGroupComposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineHardLockToTarget.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineHardLookAt.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineOrbitalTransposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachinePOV.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineSameAsFollowTarget.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineTrackedDolly.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineTransposer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/AxisState.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CameraState.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineBlend.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineBlenderSettings.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineComponentBase.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineCore.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineDebug.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineExtension.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineInputAxisDriver.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachinePathBase.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachinePropertyAttribute.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineVirtualCameraBase.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ConfinerOven.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/GaussianFilter.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ICinemachineCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ICinemachineComponent.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/LensSettings.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/NoiseSettings.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/Predictor.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/RuntimeUtility.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/SignalSourceAsset.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/SplineHelpers.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/TargetPositionCache.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/UnityVectorExtensions.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/UpdateTracker.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Experimental/CinemachineNewFreeLook.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Experimental/CinemachineNewVirtualCamera.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineInputProvider.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineTouchInputMapper.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineTriggerAction.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/GroupWeightManipulator.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineCollisionImpulseSource.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineFixedSignal.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseDefinition.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseListener.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseManager.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseSource.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineIndependentImpulseListener.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/PostProcessing/CinemachinePostProcessing.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/PostProcessing/CinemachineVolumeSettings.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/ThirdParty/clipper.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineMixer.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineShot.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineShotPlayable.cs"
"Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineTrack.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/AssemblyInfo.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/Cinemachine3rdPersonAim.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineBlendListCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineBrain.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineCameraOffset.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineClearShot.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineCollider.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineConfiner.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineConfiner2D.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineDollyCart.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineExternalCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineFollowZoom.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineFreeLook.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineMixingCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePath.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePipeline.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachinePixelPerfect.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineRecomposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineSmoothPath.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineStateDrivenCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineStoryboard.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineTargetGroup.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Behaviours/CinemachineVirtualCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/Cinemachine3rdPersonFollow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineBasicMultiChannelPerlin.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineComposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineFramingTransposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineGroupComposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineHardLockToTarget.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineHardLookAt.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineOrbitalTransposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachinePOV.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineSameAsFollowTarget.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineTrackedDolly.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Components/CinemachineTransposer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/AxisState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CameraState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineBlend.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineBlenderSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineComponentBase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineCore.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineDebug.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineExtension.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineInputAxisDriver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachinePathBase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachinePropertyAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/CinemachineVirtualCameraBase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ConfinerOven.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/GaussianFilter.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ICinemachineCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/ICinemachineComponent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/LensSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/NoiseSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/Predictor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/RuntimeUtility.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/SignalSourceAsset.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/SplineHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/TargetPositionCache.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/UnityVectorExtensions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Core/UpdateTracker.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Experimental/CinemachineNewFreeLook.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Experimental/CinemachineNewVirtualCamera.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineInputProvider.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineTouchInputMapper.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/CinemachineTriggerAction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Helpers/GroupWeightManipulator.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineCollisionImpulseSource.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineFixedSignal.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseDefinition.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseListener.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseManager.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineImpulseSource.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Impulse/CinemachineIndependentImpulseListener.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/PostProcessing/CinemachinePostProcessing.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/PostProcessing/CinemachineVolumeSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/ThirdParty/clipper.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineMixer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineShot.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineShotPlayable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.cinemachine@2.9.5/Runtime/Timeline/CinemachineTrack.cs"
-langversion:9.0
/deterministic

@ -68,4 +68,4 @@ Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_62461D02BFC8
Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_D727C1EB5BA3D9E6.mvfrm
Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_C9055D01DD43C0E8.mvfrm
Library/Bee/artifacts/mvdfrm/UnityEngine.dll_6CDED7108EAC9588.mvfrm
Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_DF82FA3434604068.mvfrm
Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_212E1DEDC993B6CD.mvfrm

@ -300,61 +300,61 @@
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.WindModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.XRModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.dll"
-r:"Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll"
-r:"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Unity.Burst.Unsafe.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.ref.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompileAttribute.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompiler.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompilerOptions.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstExecutionEnvironment.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstRuntime.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstString.Float.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstString.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Aliasing.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/AssumeRangeAttribute.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Constant.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Hint.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/IgnoreWarningAttribute.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Loop.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/SPMD.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/SkipLocalsInitAttribute.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/DiagnosticId.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstCompileTarget.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstEditorOptions.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstLoader.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstReflection.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/FunctionPointer.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_crypto.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_dotprod.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_fp16.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_rdma.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_ctor.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Common.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/SimdDebugViews.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/f16.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v128.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v256.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v64.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Avx.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Avx2.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Bmi1.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Bmi2.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Common.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Csr.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/F16C.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Fma.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Popcnt.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse2.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse3.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse4_1.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse4_2.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Ssse3.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/NoAliasAttribute.cs"
"Library/PackageCache/com.unity.burst@1.8.2/Runtime/SharedStatic.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompileAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompiler.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstCompilerOptions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstExecutionEnvironment.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstRuntime.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstString.Float.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/BurstString.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Aliasing.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/AssumeRangeAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Constant.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Hint.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/IgnoreWarningAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/Loop.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/SPMD.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/CompilerServices/SkipLocalsInitAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/DiagnosticId.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstCompileTarget.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstEditorOptions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstLoader.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Editor/BurstReflection.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/FunctionPointer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_crypto.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_dotprod.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_fp16.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_AArch64_rdma.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Arm/NEON_ctor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/Common.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/SimdDebugViews.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/f16.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v128.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v256.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/v64.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Avx.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Avx2.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Bmi1.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Bmi2.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Common.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Csr.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/F16C.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Fma.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Popcnt.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse2.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse3.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse4_1.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Sse4_2.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/Intrinsics/x86/Ssse3.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/NoAliasAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.burst@1.8.2/Runtime/SharedStatic.cs"
-langversion:9.0
/unsafe+
/deterministic

@ -305,348 +305,348 @@
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.WindModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.XRModule.dll"
-r:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.dll"
-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll"
-r:"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.ref.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"
-analyzer:"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/AxisComposite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/ButtonWithOneModifier.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/ButtonWithTwoModifiers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/OneModifierComposite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/TwoModifiersComposite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/Vector2Composite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/Vector3Composite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/IInputActionCollection.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/IInputInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputAction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionAsset.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionChange.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionMap.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionParameters.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionPhase.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionProperty.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionRebindingExtensions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionReference.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionSetupExtensions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionState.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionTrace.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionType.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBinding.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingComposite.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingCompositeContext.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingResolver.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputControlScheme.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputInteractionContext.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/HoldInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/MultiTapInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/PressInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/SlowTapInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/TapInteraction.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/AssemblyInfo.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/AnyKeyControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/AxisControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/ButtonControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/CommonUsages.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DeltaControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DiscreteButtonControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DoubleControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DpadControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlAttribute.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlExtensions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayout.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayoutAttribute.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayoutChange.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlList.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlPath.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/IntegerControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/KeyControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/AxisDeadzoneProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ClampProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/CompensateDirectionProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/CompensateRotationProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/EditorWindowSpaceProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertVector2Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertVector3Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeVector2Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeVector3Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleVector2Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleVector3Processor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/StickDeadzoneProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/QuaternionControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/StickControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchPhaseControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchPressControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Vector2Control.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Vector3Control.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/DisableDeviceCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/EnableDeviceCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/IInputDeviceCommandInfo.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/InputDeviceCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryCanRunInBackground.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryDimensionsCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryEditorWindowCoordinatesCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryKeyNameCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryUserIdCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/RequestResetCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/RequestSyncCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/UseWindowsGamingInputCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/WarpMousePositionCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Gamepad.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/DualMotorRumble.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/IDualMotorRumble.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/IHaptics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/ICustomDeviceReset.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IEventMerger.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IEventPreProcessor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IInputUpdateCallbackReceiver.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/ITextInputReceiver.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDevice.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceBuilder.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceChange.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceDescription.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceMatcher.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Joystick.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Keyboard.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Mouse.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Pen.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Pointer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastKeyboard.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastMouse.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastMouse.partial.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastTouchscreen.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Remote/InputRemoting.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Remote/RemoteInputPlayerConnection.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Sensor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Touchscreen.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/TrackedDevice.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionAssetManager.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionEditorToolbar.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionEditorWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionPropertiesView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionTreeView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionTreeViewItems.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputBindingPropertiesView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/NameAndParameterListView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/ParameterListView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/PropertiesViewBase.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionAssetEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionCodeGenerator.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionImporter.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionImporterEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/BuildPipeline/LinkFileGenerator.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/IInputControlPickerLayout.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlDropdownItem.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPathEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPicker.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPickerDropdown.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPickerState.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/Layouts/DefaultInputControlPickerLayout.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/Layouts/TouchscreenControlPickerLayout.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputActionDebuggerWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputDebuggerWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputDeviceDebuggerWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/DeviceSimulator/InputSystemPlugin.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/DownloadableSample.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/EditorInputControlLayoutCache.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputDiagnostics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputLayoutCodeGenerator.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputParameterEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdown.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownGUI.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownItem.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownState.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/CallbackDataSource.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/MultiLevelDataSource.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/EditorHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/GUIHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputActionSerializationHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputControlTreeView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputEventTreeView.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputStateWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/SerializedPropertyHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/TreeViewHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionDrawer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionDrawerBase.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionMapDrawer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionPropertyDrawer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputControlPathDrawer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/EditorPlayerSettingHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputEditorUserSettings.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputSettingsBuildProvider.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputSettingsProvider.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/ActionEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeltaStateEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceConfigurationEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceRemoveEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceResetEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/IInputEventTypeInfo.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/IMECompositionEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventBuffer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventListener.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventPtr.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventStream.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventTrace.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/StateEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/TextEvent.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/IInputDiagnostics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/IInputRuntime.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputAnalytics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputExtensions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputFeatureNames.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputManager.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputManagerStateMonitors.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputMetrics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSettings.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSystem.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSystemObject.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputUpdateType.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/NativeInputRuntime.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidAxis.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidGameController.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidKeyCode.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidSensors.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockGamepad.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockGamepadHID.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/IDualShockHaptics.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/Finger.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/Touch.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HID.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDDescriptorWindow.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDParser.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Linux/LinuxSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Linux/SDLDeviceBuilder.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OSX/OSXGameController.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OSX/OSXSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenButton.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenStick.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/DefaultInputActions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/InputValue.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInput.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputManager.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputManagerEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerJoinBehavior.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerNotifications.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/IStreamControllerAPI.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamController.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamControllerType.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamHandle.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamIGAConverter.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Switch/SwitchProControllerHID.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Switch/SwitchSupportHID.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/BaseInputOverride.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/ExtendedAxisEventData.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/ExtendedPointerEventData.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/InputSystemUIInputModule.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/InputSystemUIInputModuleEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/MultiplayerEventSystem.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/NavigationModel.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/PointerModel.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/StandaloneInputModuleEditor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/TrackedDeviceRaycaster.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/UISupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/VirtualMouseInput.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UnityRemote/UnityRemoteSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUser.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserAccountHandle.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserChange.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserPairingOptions.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserSettings.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLGamepad.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLJoystick.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/IXboxOneRumble.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputController.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputControllerWindows.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XboxGamepadMacOS.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Controls/PoseControl.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/GoogleVR.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/Oculus.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/OpenVR.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/WindowsMR.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/GenericXRDevice.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/BufferedRumble.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/GetCurrentHapticStateCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/GetHapticCapabilitiesCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/SendBufferedHapticsCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/SendHapticImpulseCommand.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/TrackedPoseDriver.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/XRLayoutBuilder.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/XRSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/IOSGameController.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/InputSettingsiOS.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/InputSettingsiOSProvider.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSPostProcessBuild.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSStepCounter.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSSupport.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateCallbackReceiver.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateChangeMonitor.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateTypeInfo.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputState.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateBlock.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateBuffers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateHistory.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ArrayHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/CSharpCodeHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/CallbackArray.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Comparers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DelegateHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DisplayStringFormatAttribute.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DynamicBitfield.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ExceptionHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/FourCC.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/InlinedArray.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/InternedString.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/JsonParser.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/MemoryHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/MiscHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NameAndParameters.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NamedValue.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NumberHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/ForDeviceEventObservable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/Observable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/Observer.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/SelectManyObservable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/SelectObservable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/TakeNObservable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/WhereObservable.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/OneOrMore.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/PredictiveParser.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/PrimitiveValue.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ReadOnlyArray.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/SavedState.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/StringHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Substring.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/TypeHelpers.cs"
"Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/TypeTable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/AxisComposite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/ButtonWithOneModifier.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/ButtonWithTwoModifiers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/OneModifierComposite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/TwoModifiersComposite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/Vector2Composite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Composites/Vector3Composite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/IInputActionCollection.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/IInputInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputAction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionAsset.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionChange.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionMap.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionParameters.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionPhase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionProperty.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionRebindingExtensions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionReference.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionSetupExtensions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionTrace.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputActionType.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBinding.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingComposite.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingCompositeContext.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputBindingResolver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputControlScheme.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/InputInteractionContext.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/HoldInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/MultiTapInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/PressInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/SlowTapInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Actions/Interactions/TapInteraction.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/AssemblyInfo.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/AnyKeyControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/AxisControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/ButtonControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/CommonUsages.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DeltaControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DiscreteButtonControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DoubleControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/DpadControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlExtensions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayout.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayoutAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlLayoutChange.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlList.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputControlPath.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/InputProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/IntegerControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/KeyControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/AxisDeadzoneProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ClampProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/CompensateDirectionProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/CompensateRotationProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/EditorWindowSpaceProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertVector2Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/InvertVector3Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeVector2Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/NormalizeVector3Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleVector2Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/ScaleVector3Processor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Processors/StickDeadzoneProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/QuaternionControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/StickControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchPhaseControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/TouchPressControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Vector2Control.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Controls/Vector3Control.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/DisableDeviceCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/EnableDeviceCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/IInputDeviceCommandInfo.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/InputDeviceCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryCanRunInBackground.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryDimensionsCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryEditorWindowCoordinatesCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryKeyNameCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/QueryUserIdCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/RequestResetCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/RequestSyncCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/UseWindowsGamingInputCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Commands/WarpMousePositionCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Gamepad.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/DualMotorRumble.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/IDualMotorRumble.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Haptics/IHaptics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/ICustomDeviceReset.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IEventMerger.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IEventPreProcessor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/IInputUpdateCallbackReceiver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/ITextInputReceiver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDevice.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceBuilder.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceChange.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceDescription.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/InputDeviceMatcher.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Joystick.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Keyboard.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Mouse.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Pen.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Pointer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastKeyboard.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastMouse.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastMouse.partial.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Precompiled/FastTouchscreen.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Remote/InputRemoting.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Remote/RemoteInputPlayerConnection.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Sensor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/Touchscreen.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Devices/TrackedDevice.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionAssetManager.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionEditorToolbar.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionEditorWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionPropertiesView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionTreeView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputActionTreeViewItems.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/InputBindingPropertiesView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/NameAndParameterListView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/ParameterListView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetEditor/PropertiesViewBase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionAssetEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionCodeGenerator.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionImporter.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/AssetImporter/InputActionImporterEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/BuildPipeline/LinkFileGenerator.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/IInputControlPickerLayout.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlDropdownItem.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPathEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPicker.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPickerDropdown.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/InputControlPickerState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/Layouts/DefaultInputControlPickerLayout.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/ControlPicker/Layouts/TouchscreenControlPickerLayout.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputActionDebuggerWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputDebuggerWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Debugger/InputDeviceDebuggerWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/DeviceSimulator/InputSystemPlugin.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/DownloadableSample.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/EditorInputControlLayoutCache.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputDiagnostics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputLayoutCodeGenerator.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/InputParameterEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdown.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownDataSource.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownGUI.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownItem.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/AdvancedDropdownWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/CallbackDataSource.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/AdvancedDropdown/MultiLevelDataSource.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/EditorHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/GUIHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputActionSerializationHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputControlTreeView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputEventTreeView.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/InputStateWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/SerializedPropertyHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Internal/TreeViewHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionDrawer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionDrawerBase.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionMapDrawer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputActionPropertyDrawer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/PropertyDrawers/InputControlPathDrawer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/EditorPlayerSettingHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputEditorUserSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputSettingsBuildProvider.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Editor/Settings/InputSettingsProvider.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/ActionEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeltaStateEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceConfigurationEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceRemoveEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/DeviceResetEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/IInputEventTypeInfo.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/IMECompositionEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventBuffer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventListener.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventPtr.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventStream.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/InputEventTrace.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/StateEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Events/TextEvent.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/IInputDiagnostics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/IInputRuntime.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputAnalytics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputExtensions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputFeatureNames.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputManager.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputManagerStateMonitors.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputMetrics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSystem.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputSystemObject.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/InputUpdateType.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/NativeInputRuntime.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidAxis.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidGameController.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidKeyCode.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidSensors.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Android/AndroidSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockGamepad.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockGamepadHID.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/DualShockSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/DualShock/IDualShockHaptics.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/Finger.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/Touch.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HID.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDDescriptorWindow.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDParser.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/HID/HIDSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Linux/LinuxSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Linux/SDLDeviceBuilder.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OSX/OSXGameController.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OSX/OSXSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenButton.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenStick.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/OnScreen/OnScreenSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/DefaultInputActions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/InputValue.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInput.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputManager.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerInputManagerEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerJoinBehavior.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/PlayerInput/PlayerNotifications.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/IStreamControllerAPI.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamController.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamControllerType.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamHandle.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamIGAConverter.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Steam/SteamSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Switch/SwitchProControllerHID.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Switch/SwitchSupportHID.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/BaseInputOverride.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/ExtendedAxisEventData.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/ExtendedPointerEventData.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/InputSystemUIInputModule.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/InputSystemUIInputModuleEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/MultiplayerEventSystem.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/NavigationModel.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/PointerModel.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/StandaloneInputModuleEditor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/TrackedDeviceRaycaster.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/UISupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UI/VirtualMouseInput.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/UnityRemote/UnityRemoteSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUser.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserAccountHandle.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserChange.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserPairingOptions.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/Users/InputUserSettings.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLGamepad.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLJoystick.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/WebGL/WebGLSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/IXboxOneRumble.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputController.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputControllerWindows.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XInputSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XInput/XboxGamepadMacOS.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Controls/PoseControl.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/GoogleVR.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/Oculus.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/OpenVR.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Devices/WindowsMR.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/GenericXRDevice.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/BufferedRumble.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/GetCurrentHapticStateCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/GetHapticCapabilitiesCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/SendBufferedHapticsCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/Haptics/SendHapticImpulseCommand.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/TrackedPoseDriver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/XRLayoutBuilder.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/XR/XRSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/IOSGameController.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/InputSettingsiOS.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/InputSettingsiOSProvider.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSPostProcessBuild.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSStepCounter.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Plugins/iOS/iOSSupport.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateCallbackReceiver.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateChangeMonitor.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/IInputStateTypeInfo.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateBlock.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateBuffers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/State/InputStateHistory.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ArrayHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/CSharpCodeHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/CallbackArray.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Comparers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DelegateHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DisplayStringFormatAttribute.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/DynamicBitfield.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ExceptionHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/FourCC.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/InlinedArray.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/InternedString.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/JsonParser.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/MemoryHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/MiscHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NameAndParameters.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NamedValue.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/NumberHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/ForDeviceEventObservable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/Observable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/Observer.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/SelectManyObservable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/SelectObservable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/TakeNObservable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Observables/WhereObservable.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/OneOrMore.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/PredictiveParser.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/PrimitiveValue.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/ReadOnlyArray.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/SavedState.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/StringHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/Substring.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/TypeHelpers.cs"
"/home/sascha/coding/unity/KitchenChaos/Library/PackageCache/com.unity.inputsystem@1.4.4/InputSystem/Utilities/TypeTable.cs"
-langversion:9.0
/unsafe+
/deterministic

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