From e60ad0b156dfa865aca5933206d1544c32db2b36 Mon Sep 17 00:00:00 2001 From: freezy Date: Sun, 25 Dec 2022 01:01:30 +0100 Subject: [PATCH 01/11] kickers: Fix rotation. --- .../VPT/Kicker/KickerComponent.cs | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs index 5c084694e..9c2016cd8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs @@ -123,12 +123,18 @@ public override void UpdateTransforms() // scale t.localScale = Physics.ScaleToWorld(Radius, Radius, Radius); - // rotation - t.localEulerAngles = KickerType switch { - Engine.VPT.KickerType.KickerCup => Physics.RotateToWorld(0, 0, Orientation), - Engine.VPT.KickerType.KickerWilliams => Physics.RotateToWorld(0, 0, Orientation + 90f), - _ => t.localEulerAngles - }; + switch (KickerType) { + // rotation + case Engine.VPT.KickerType.KickerCup: + t.localEulerAngles = Physics.RotateToWorld(0, 0, Orientation); + break; + case Engine.VPT.KickerType.KickerWilliams: + t.localEulerAngles = Physics.RotateToWorld(0, 0, Orientation + 90f); + break; + default: + t.localEulerAngles = Physics.RotateToWorld(0, 0, Orientation); + break; + } } private float _originalRotationZ; From a24922b024f94b108940e9fe73213568c3ba2305 Mon Sep 17 00:00:00 2001 From: freezy Date: Mon, 26 Dec 2022 01:40:53 +0100 Subject: [PATCH 02/11] editor: Add custom mesh to mesh selection property field. --- .../VPT/ItemInspector.cs | 38 +++++++++++++------ 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs index cc310803a..4e7314402 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs @@ -215,26 +215,42 @@ protected void MeshDropdownProperty(string label, SerializedProperty meshProp, s { var files = Directory.GetFiles(meshFolder, "*.mesh") .Select(Path.GetFileNameWithoutExtension) + .Concat(new[] { "Custom Mesh"}) .ToArray(); var selectedIndex = files.ToList().IndexOf(meshProp.stringValue); EditorGUI.BeginChangeCheck(); var newIndex = EditorGUILayout.Popup(label, selectedIndex, files); if (EditorGUI.EndChangeCheck() && newIndex >= 0 && newIndex < files.Length && go != null) { + var meshPath = Path.Combine(meshFolder, $"{files[newIndex]}.mesh"); var mf = go.GetComponent(); - if (mf) { - var mesh = (Mesh)AssetDatabase.LoadAssetAtPath(Path.Combine(meshFolder, $"{files[newIndex]}.mesh"), typeof(Mesh)); + var mr = go.GetComponent(); + if (File.Exists(meshPath)) { + if (!mf) { + mf = go.AddComponent(); + } + if (!mr) { + go.AddComponent(); + } + var mesh = (Mesh)AssetDatabase.LoadAssetAtPath(meshPath, typeof(Mesh)); + mr.enabled = true; mf.sharedMesh = mesh; - meshProp.stringValue = files[newIndex]; - if (meshTypeMap.ContainsKey(files[newIndex])) { - typeProp.intValue = meshTypeMap[files[newIndex]]; + + } else { + if (mr) { + mr.enabled = false; } - meshProp.serializedObject.ApplyModifiedProperties(); - if (target is MonoBehaviour mb) { - var colliderComponent = mb.GetComponent(); - if (colliderComponent != null) { - colliderComponent.CollidersDirty = true; - } + } + + meshProp.stringValue = files[newIndex]; + if (meshTypeMap.ContainsKey(files[newIndex])) { + typeProp.intValue = meshTypeMap[files[newIndex]]; + } + meshProp.serializedObject.ApplyModifiedProperties(); + if (target is MonoBehaviour mb) { + var colliderComponent = mb.GetComponent(); + if (colliderComponent != null) { + colliderComponent.CollidersDirty = true; } } } From 955b1d8fb83ccff8344fcd8026da69b13b957961 Mon Sep 17 00:00:00 2001 From: freezy Date: Tue, 27 Dec 2022 12:22:04 +0100 Subject: [PATCH 03/11] kickers: Fix transformation when switching types. --- .../VisualPinball.Unity.Editor/VPT/ItemInspector.cs | 11 ++++++++++- .../VPT/Kicker/KickerInspector.cs | 1 + .../VisualPinball.Unity/VPT/Kicker/KickerComponent.cs | 7 ++++++- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs index 4e7314402..3fb28edcf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs @@ -39,6 +39,8 @@ public abstract class ItemInspector : UnityEditor.Editor private SerializedProperty _isLockedProperty; + internal const string CustomMeshLabel = "Custom Mesh"; + #region Unity Events protected virtual void OnEnable() @@ -215,7 +217,7 @@ protected void MeshDropdownProperty(string label, SerializedProperty meshProp, s { var files = Directory.GetFiles(meshFolder, "*.mesh") .Select(Path.GetFileNameWithoutExtension) - .Concat(new[] { "Custom Mesh"}) + .Concat(new[] { CustomMeshLabel }) .ToArray(); var selectedIndex = files.ToList().IndexOf(meshProp.stringValue); @@ -240,6 +242,9 @@ protected void MeshDropdownProperty(string label, SerializedProperty meshProp, s if (mr) { mr.enabled = false; } + if (mf) { + mf.sharedMesh = null; + } } meshProp.stringValue = files[newIndex]; @@ -253,6 +258,10 @@ protected void MeshDropdownProperty(string label, SerializedProperty meshProp, s colliderComponent.CollidersDirty = true; } } + + if (target is IMainRenderableComponent mrc) { + mrc.UpdateTransforms(); + } } } diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs index 13133371f..26e89752a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs @@ -38,6 +38,7 @@ public class KickerInspector : MainInspector { "Hole", KickerType.KickerHole }, { "Simple Hole", KickerType.KickerHoleSimple }, { "Williams", KickerType.KickerWilliams }, + { CustomMeshLabel, KickerType.KickerInvisible }, }; private SerializedProperty _positionProperty; diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs index 9c2016cd8..cf7d732ae 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs @@ -121,7 +121,9 @@ public override void UpdateTransforms() } // scale - t.localScale = Physics.ScaleToWorld(Radius, Radius, Radius); + t.localScale = KickerType == Engine.VPT.KickerType.KickerInvisible + ? Vector3.one + : Physics.ScaleToWorld(Radius, Radius, Radius); switch (KickerType) { // rotation @@ -131,6 +133,9 @@ public override void UpdateTransforms() case Engine.VPT.KickerType.KickerWilliams: t.localEulerAngles = Physics.RotateToWorld(0, 0, Orientation + 90f); break; + case Engine.VPT.KickerType.KickerInvisible: + t.localRotation = Quaternion.identity; + break; default: t.localEulerAngles = Physics.RotateToWorld(0, 0, Orientation); break; From 428206ff1eade154cff1fbc575539557c25859e8 Mon Sep 17 00:00:00 2001 From: freezy Date: Wed, 28 Dec 2022 22:16:19 +0100 Subject: [PATCH 04/11] assets: Add reference to background object. --- .../AssetBrowser/AssetStructure/Asset.cs | 8 ++++++- .../AssetStructure/AssetDetails.cs | 23 +++++++++++++++++++ .../AssetStructure/AssetDetails_Body.uxml | 9 ++++---- .../Elements/ObjectDropdownElement.cs | 9 ++++++-- 4 files changed, 42 insertions(+), 7 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs index 4e15367d0..0ccf7cfd9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs @@ -63,13 +63,19 @@ public class Asset : ScriptableObject [NonReorderable] // see https://answers.unity.com/questions/1828499/nested-class-lists-inspector-overlapping-bug.html public List MaterialVariations; + [SerializeField] + public string ThumbBackgroundObjectName; + [SerializeReference] public Preset ThumbCameraPreset; [SerializeField] public float ThumbCameraHeight; - [SerializeReference] + [SerializeField] + public bool ThumbTopLight; + + [SerializeField] public bool UnpackPrefab; [SerializeReference] diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs index f5a8e62e0..172267508 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs @@ -22,6 +22,7 @@ using UnityEditor; using UnityEditor.UIElements; using UnityEngine; +using UnityEngine.SceneManagement; using UnityEngine.UIElements; using Object = UnityEngine.Object; @@ -165,6 +166,28 @@ public void Bind(Asset asset) description.text = asset.Description; SetVisibility(description, asset.Library.IsLocked && !string.IsNullOrEmpty(asset.Description)); + BindBackgroundObjects(); + } + + private void BindBackgroundObjects() + { + var bgo = _body.Q("background-object-field"); + var bgParent = SceneManager.GetActiveScene().GetRootGameObjects() + .FirstOrDefault(go => go.name == "_BackgroundObjects"); + + if (bgParent == null) { + bgo.visible = false; + return; + } + bgo.visible = true; + bgo.Value = _asset.ThumbBackgroundObjectName != null ? bgParent.transform.Find(_asset.ThumbBackgroundObjectName)?.gameObject : null; + bgo.AddObjectsToDropdown(bgParent, true); + bgo.RegisterValueChangedCallback(OnThumbBackgroundObjectChanged); + } + + private void OnThumbBackgroundObjectChanged(Object obj) + { + _asset.ThumbBackgroundObjectName = obj.name; } private void BindInfo(Asset asset) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml index df1675e66..621e2b44c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml @@ -31,11 +31,12 @@ - + - - - + + + + diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs index ce1939861..f28a8f019 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs @@ -87,13 +87,13 @@ public void RegisterValueChangedCallback(Action onValueChanged) _onValueChanged = onValueChanged; } - public void AddObjectsToDropdown(Object parentObj) where T : Component + public void AddObjectsToDropdown(Object parentObj, bool includeInactive = false) where T : Component { if (parentObj is not GameObject parentGo) { return; } _objects.Clear(); - _objects.AddRange(parentGo.GetComponentsInChildren().Select(c => c.gameObject)); + _objects.AddRange(parentGo.GetComponentsInChildren(includeInactive).Select(c => c.gameObject)); _dropdown.choices = _objects.Select(go => go.name).ToList(); if (_objectPicker.value) { _dropdown.SetValueWithoutNotify(_objectPicker.value.name); @@ -102,6 +102,11 @@ public void AddObjectsToDropdown(Object parentObj) where T : Component public void SetValue(Object obj) { + if (obj == null) { + _dropdown.SetValueWithoutNotify(null); + _objectPicker.value = null; + return; + } var selectedGo = _objects.FirstOrDefault(go => go.name == obj.name); if (selectedGo != null) { _dropdown.SetValueWithoutNotify(obj.name); From f5fac47ed38a4e9feccb71a8dd7788acb47f1f7d Mon Sep 17 00:00:00 2001 From: freezy Date: Thu, 29 Dec 2022 23:00:25 +0100 Subject: [PATCH 05/11] assets: Ditch top light setting. --- .../AssetBrowser/AssetStructure/Asset.cs | 5 +---- .../AssetBrowser/AssetStructure/AssetDetails.cs | 10 +++++----- .../AssetBrowser/AssetStructure/AssetDetails_Body.uxml | 3 +-- .../VPT/Kicker/KickerInspector.cs | 2 +- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs index 0ccf7cfd9..96ae5cf9c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs @@ -64,7 +64,7 @@ public class Asset : ScriptableObject public List MaterialVariations; [SerializeField] - public string ThumbBackgroundObjectName; + public string EnvironmentGameObjectName; [SerializeReference] public Preset ThumbCameraPreset; @@ -72,9 +72,6 @@ public class Asset : ScriptableObject [SerializeField] public float ThumbCameraHeight; - [SerializeField] - public bool ThumbTopLight; - [SerializeField] public bool UnpackPrefab; diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs index 172267508..c98efee2e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs @@ -171,7 +171,7 @@ public void Bind(Asset asset) private void BindBackgroundObjects() { - var bgo = _body.Q("background-object-field"); + var bgo = _body.Q("environment-field"); var bgParent = SceneManager.GetActiveScene().GetRootGameObjects() .FirstOrDefault(go => go.name == "_BackgroundObjects"); @@ -180,14 +180,14 @@ private void BindBackgroundObjects() return; } bgo.visible = true; - bgo.Value = _asset.ThumbBackgroundObjectName != null ? bgParent.transform.Find(_asset.ThumbBackgroundObjectName)?.gameObject : null; + bgo.Value = _asset.EnvironmentGameObjectName != null ? bgParent.transform.Find(_asset.EnvironmentGameObjectName)?.gameObject : null; bgo.AddObjectsToDropdown(bgParent, true); - bgo.RegisterValueChangedCallback(OnThumbBackgroundObjectChanged); + bgo.RegisterValueChangedCallback(OnThumbEnvironmentChanged); } - private void OnThumbBackgroundObjectChanged(Object obj) + private void OnThumbEnvironmentChanged(Object obj) { - _asset.ThumbBackgroundObjectName = obj.name; + _asset.EnvironmentGameObjectName = obj.name; } private void BindInfo(Asset asset) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml index 621e2b44c..8d69bf8e3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails_Body.uxml @@ -33,10 +33,9 @@ - + - diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs index 26e89752a..6cd982dc8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs @@ -101,7 +101,7 @@ private void OnSceneGUI() var localPos = MainComponent.GetEditorPosition(); localPos.z = MainComponent.PositionZ; - var worldPos = transform.parent.TransformPoint(localPos); + var worldPos = transform.parent == null ? localPos : transform.parent.TransformPoint(localPos); foreach (var coil in MainComponent.Coils) { var from = MainComponent.GetBallCreationPosition().ToUnityVector3(); From bfd1310fe3431f618eaa0b6ff7af14561699b04b Mon Sep 17 00:00:00 2001 From: freezy Date: Tue, 3 Jan 2023 23:08:42 +0100 Subject: [PATCH 06/11] assets: Add latest thumb cam settings. --- .../Asset Thumbcam/Close-Up High.preset | 75 +++++++++++++++++++ .../Asset Thumbcam/Close-Up High.preset.meta | 8 ++ .../Asset Thumbcam/Default (bottom).preset | 75 +++++++++++++++++++ .../Default (bottom).preset.meta | 8 ++ .../Asset Thumbcam/Flipper (right).preset | 75 +++++++++++++++++++ .../Flipper (right).preset.meta | 8 ++ .../Long Distance (vertical).preset | 75 +++++++++++++++++++ .../Long Distance (vertical).preset.meta | 8 ++ .../Mid Distance (vertical).preset | 75 +++++++++++++++++++ .../Mid Distance (vertical).preset.meta | 8 ++ .../Asset Thumbcam/Mid Distance.preset | 75 +++++++++++++++++++ .../Asset Thumbcam/Mid Distance.preset.meta | 8 ++ 12 files changed, 498 insertions(+) create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset.meta create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset.meta create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset.meta create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset.meta create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset.meta create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset create mode 100644 VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset.meta diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset new file mode 100644 index 000000000..9e7311f4a --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Close-Up High + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.27781588 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.36497167 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.1150751 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.8811196 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.0212 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.0271 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.0212 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset.meta new file mode 100644 index 000000000..57e03df8b --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Close-Up High.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38b1859491e4d7445a6280bcabc53742 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset new file mode 100644 index 000000000..6e44cb3f1 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Default (bottom) + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.35355338 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.35355338 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.1464466 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.8535535 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.0587 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.0886 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.0593 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset.meta new file mode 100644 index 000000000..531aebc20 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Default (bottom).preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e361b46afd684324dbc1ddcecd669c95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset new file mode 100644 index 000000000..d1d964e22 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Flipper (right) + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.27781588 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.36497167 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.1150751 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.8811196 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.1244 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.1076 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.1129 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset.meta new file mode 100644 index 000000000..4520f031a --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Flipper (right).preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30c355cd87a19b44e9f8d61d7b8a6cb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset new file mode 100644 index 000000000..bd4395b16 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Long Distance (vertical) + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.10187345 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.38034984 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.042197358 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.9182458 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.594 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.169 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.561 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset.meta new file mode 100644 index 000000000..7ffdd8e0f --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Long Distance (vertical).preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 52070213499abc44a8140809bb35089e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset new file mode 100644 index 000000000..7c0255a16 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Mid Distance (vertical) + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.10187345 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.38034984 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.042197358 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.9182458 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.1835 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.0445 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.1977 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset.meta new file mode 100644 index 000000000..e61e875bd --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance (vertical).preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c5552059c3f0904d963cc99b7331239 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset new file mode 100644 index 000000000..c80a2635e --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Mid Distance + m_TargetType: + m_NativeTypeID: 4 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_LocalRotation.x + value: 0.27781588 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.y + value: 0.36497167 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.z + value: -0.1150751 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalRotation.w + value: 0.8811196 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.x + value: -0.1202 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.y + value: 0.143 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalPosition.z + value: -0.1202 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.x + value: 35 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.y + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_ExcludedProperties: [] diff --git a/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset.meta b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset.meta new file mode 100644 index 000000000..7786c1024 --- /dev/null +++ b/VisualPinball.Unity/Assets/Presets/Asset Thumbcam/Mid Distance.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee98116218811694c856c46eb912660d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: From b3d0e3af12e0978796295900b1301f7decfce21b Mon Sep 17 00:00:00 2001 From: freezy Date: Tue, 3 Jan 2023 23:09:08 +0100 Subject: [PATCH 07/11] assets: Only show tag title in browser when there are actually tags in the selected category. --- .../AssetBrowser/LibraryCategoryView.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs index a3b90fa80..015730cd3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs @@ -257,6 +257,7 @@ private void SetCategoryTags() } } } + _tagsTitleLabel.visible = tags.Count > 0; // render tags foreach (var tag in tags.OrderBy(t => t)) { From c7086e74bd8cf75124748741d5c56e33fa353bc6 Mon Sep 17 00:00:00 2001 From: freezy Date: Tue, 3 Jan 2023 23:09:22 +0100 Subject: [PATCH 08/11] fix: Kicker widget orientation. --- .../VPT/Kicker/KickerInspector.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs index 6cd982dc8..c29d66ac1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs @@ -97,19 +97,20 @@ private void OnSceneGUI() } Handles.color = Color.cyan; + Handles.matrix = Matrix4x4.identity; var transform = MainComponent.transform; var localPos = MainComponent.GetEditorPosition(); localPos.z = MainComponent.PositionZ; - var worldPos = transform.parent == null ? localPos : transform.parent.TransformPoint(localPos); + var worldPos = transform.parent == null ? localPos : localPos.TranslateToWorld(); foreach (var coil in MainComponent.Coils) { var from = MainComponent.GetBallCreationPosition().ToUnityVector3(); var l = coil.Speed == 0 ? 1f : 20f * coil.Speed; var dir = new Vector3( l * math.sin(math.radians(coil.Angle)), - -l * math.cos(math.radians(coil.Angle)), - l * math.sin(math.radians(coil.Inclination)) + l * math.sin(math.radians(coil.Inclination)), + l * math.cos(math.radians(coil.Angle)) ); var to = from + dir; var worldDir = transform.TransformDirection(math.normalize( to - from)); From a336ad0446d6cc16567417117a15d5786638c772 Mon Sep 17 00:00:00 2001 From: freezy Date: Tue, 3 Jan 2023 23:31:10 +0100 Subject: [PATCH 09/11] Happy new year! --- VisualPinball.Engine.Test/Common/EngineTests.cs | 2 +- VisualPinball.Engine.Test/Common/StringTests.cs | 2 +- VisualPinball.Engine.Test/IO/BiffAttributeTest.cs | 2 +- VisualPinball.Engine.Test/IO/ConsistencyTests.cs | 2 +- VisualPinball.Engine.Test/Math/ColorTests.cs | 2 +- VisualPinball.Engine.Test/Math/MathTests.cs | 2 +- VisualPinball.Engine.Test/Math/VectorTests.cs | 2 +- VisualPinball.Engine.Test/Test/BaseTests.cs | 2 +- VisualPinball.Engine.Test/Test/Fixtures.cs | 2 +- VisualPinball.Engine.Test/Test/MeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Bumper/BumperDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Bumper/BumperMeshTests.cs | 2 +- .../VPT/Collection/CollectionDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/DebugTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Decal/DecalDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/DispReel/DispReelDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Flasher/FlasherDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Flipper/FlipperDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Flipper/FlipperMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Gate/GateDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Gate/GateMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/HitTarget/HitTargetDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/HitTarget/HitTargetMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Kicker/KickerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Kicker/KickerMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Layers/LayerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Light/LightDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/LightSeq/LightSeqDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/MaterialDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/MaterialFileTests.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideDataTests.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideMeshTest.cs | 2 +- VisualPinball.Engine.Test/VPT/Plunger/PlungerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Primitive/PrimitiveDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Primitive/PrimitiveMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Ramp/RampDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Ramp/RampMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Rubber/RubberDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Rubber/RubberMeshTest.cs | 2 +- VisualPinball.Engine.Test/VPT/Sound/SoundDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Spinner/SpinnerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Spinner/SpinnerMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Surface/SurfaceDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Surface/SurfaceMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Surface/SurfacePhysicsTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Table/TableDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Table/TableMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Textbox/TextBoxDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/TextureBitmapTests.cs | 2 +- VisualPinball.Engine.Test/VPT/TextureDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Timer/TimerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Trigger/TriggerDataTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Trigger/TriggerMeshTests.cs | 2 +- VisualPinball.Engine.Test/VPT/Trough/TroughDataTests.cs | 2 +- VisualPinball.Engine.Test/VisualPinball.Engine.Test.csproj | 2 +- VisualPinball.Engine/Common/Constants.cs | 2 +- VisualPinball.Engine/Common/EngineProvider.cs | 2 +- VisualPinball.Engine/Common/Logging.cs | 2 +- VisualPinball.Engine/Common/Profiler.cs | 2 +- VisualPinball.Engine/Common/Registry.cs | 2 +- VisualPinball.Engine/Common/StringExtensions.cs | 2 +- VisualPinball.Engine/Game/Engines/GamelogicEngineCoil.cs | 2 +- VisualPinball.Engine/Game/Engines/GamelogicEngineLamp.cs | 2 +- VisualPinball.Engine/Game/Engines/GamelogicEngineSwitch.cs | 2 +- VisualPinball.Engine/Game/Engines/GamelogicEngineWire.cs | 2 +- .../Game/Engines/IGamelogicEngineDeviceItem.cs | 2 +- VisualPinball.Engine/Game/EventId.cs | 2 +- VisualPinball.Engine/Game/IBallCreationPosition.cs | 2 +- VisualPinball.Engine/Game/IPlayable.cs | 2 +- VisualPinball.Engine/Game/IRenderable.cs | 2 +- VisualPinball.Engine/Game/Origin.cs | 2 +- VisualPinball.Engine/IO/BiffAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffBoolAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffByteAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffColorAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffData.cs | 2 +- VisualPinball.Engine/IO/BiffDragPointAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffFloatAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffFontAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffIgnoreAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffIntAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffStringAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffTagAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffUtil.cs | 2 +- VisualPinball.Engine/IO/BiffVertexAttribute.cs | 2 +- VisualPinball.Engine/IO/BiffZlib.cs | 2 +- VisualPinball.Engine/Math/CatmullCurve.cs | 2 +- VisualPinball.Engine/Math/Color.cs | 2 +- VisualPinball.Engine/Math/DragPoint.cs | 2 +- VisualPinball.Engine/Math/DragPointData.cs | 2 +- VisualPinball.Engine/Math/MathF.cs | 2 +- VisualPinball.Engine/Math/Matrix3D.cs | 2 +- VisualPinball.Engine/Math/Rect3D.cs | 2 +- VisualPinball.Engine/Math/RenderVertex.cs | 2 +- VisualPinball.Engine/Math/SplineVertex.cs | 2 +- VisualPinball.Engine/Math/Vertex2D.cs | 2 +- VisualPinball.Engine/Math/Vertex3D.cs | 2 +- VisualPinball.Engine/Math/Vertex3DNoTex2.cs | 2 +- VisualPinball.Engine/VPT/BinaryData.cs | 2 +- VisualPinball.Engine/VPT/Bitmap.cs | 2 +- VisualPinball.Engine/VPT/Bumper/Bumper.cs | 2 +- VisualPinball.Engine/VPT/Bumper/BumperData.cs | 2 +- VisualPinball.Engine/VPT/Bumper/BumperMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Collection/Collection.cs | 2 +- VisualPinball.Engine/VPT/Collection/CollectionData.cs | 2 +- VisualPinball.Engine/VPT/Decal/Decal.cs | 2 +- VisualPinball.Engine/VPT/Decal/DecalData.cs | 2 +- VisualPinball.Engine/VPT/DispReel/DispReel.cs | 2 +- VisualPinball.Engine/VPT/DispReel/DispReelData.cs | 2 +- VisualPinball.Engine/VPT/Enums.cs | 2 +- VisualPinball.Engine/VPT/Flasher/Flasher.cs | 2 +- VisualPinball.Engine/VPT/Flasher/FlasherData.cs | 2 +- VisualPinball.Engine/VPT/Flipper/Flipper.cs | 2 +- VisualPinball.Engine/VPT/Flipper/FlipperData.cs | 2 +- VisualPinball.Engine/VPT/Flipper/FlipperMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Flipper/IFlipperData.cs | 2 +- VisualPinball.Engine/VPT/Font.cs | 2 +- VisualPinball.Engine/VPT/Gate/Gate.cs | 2 +- VisualPinball.Engine/VPT/Gate/GateData.cs | 2 +- VisualPinball.Engine/VPT/Gate/GateMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Gate/IGateData.cs | 2 +- VisualPinball.Engine/VPT/HitTarget/HitTarget.cs | 2 +- VisualPinball.Engine/VPT/HitTarget/HitTargetData.cs | 2 +- VisualPinball.Engine/VPT/HitTarget/HitTargetMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/HitTarget/ITargetData.cs | 2 +- VisualPinball.Engine/VPT/IItem.cs | 2 +- VisualPinball.Engine/VPT/IMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Item.cs | 2 +- VisualPinball.Engine/VPT/ItemData.cs | 2 +- VisualPinball.Engine/VPT/ItemState.cs | 2 +- VisualPinball.Engine/VPT/ItemType.cs | 2 +- VisualPinball.Engine/VPT/Kicker/Kicker.cs | 2 +- VisualPinball.Engine/VPT/Kicker/KickerData.cs | 2 +- VisualPinball.Engine/VPT/Kicker/KickerHitMesh.cs | 2 +- VisualPinball.Engine/VPT/Kicker/KickerMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Light/Light.cs | 2 +- VisualPinball.Engine/VPT/Light/LightData.cs | 2 +- VisualPinball.Engine/VPT/Light/LightMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/LightSeq/LightSeq.cs | 2 +- VisualPinball.Engine/VPT/LightSeq/LightSeqData.cs | 2 +- VisualPinball.Engine/VPT/Material.cs | 2 +- VisualPinball.Engine/VPT/MaterialData.cs | 2 +- VisualPinball.Engine/VPT/MaterialLoader.cs | 2 +- VisualPinball.Engine/VPT/Mesh.cs | 2 +- VisualPinball.Engine/VPT/MeshGenerator.cs | 2 +- .../VPT/MetalWireGuide/IMetalWireGuideData.cs | 2 +- VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuide.cs | 2 +- VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideData.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/PbrMaterial.cs | 2 +- VisualPinball.Engine/VPT/Plunger/Plunger.cs | 2 +- VisualPinball.Engine/VPT/Plunger/PlungerCoord.cs | 2 +- VisualPinball.Engine/VPT/Plunger/PlungerData.cs | 2 +- VisualPinball.Engine/VPT/Plunger/PlungerDesc.cs | 2 +- VisualPinball.Engine/VPT/Plunger/PlungerMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Primitive/Primitive.cs | 2 +- VisualPinball.Engine/VPT/Primitive/PrimitiveData.cs | 2 +- VisualPinball.Engine/VPT/Primitive/PrimitiveMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Ramp/IRampData.cs | 2 +- VisualPinball.Engine/VPT/Ramp/Ramp.cs | 2 +- VisualPinball.Engine/VPT/Ramp/RampData.cs | 2 +- VisualPinball.Engine/VPT/Ramp/RampMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Rubber/IRubberData.cs | 2 +- VisualPinball.Engine/VPT/Rubber/Rubber.cs | 2 +- VisualPinball.Engine/VPT/Rubber/RubberData.cs | 2 +- VisualPinball.Engine/VPT/Rubber/RubberMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Sound/Sound.cs | 2 +- VisualPinball.Engine/VPT/Sound/SoundData.cs | 2 +- VisualPinball.Engine/VPT/Sound/WaveFormat.cs | 2 +- VisualPinball.Engine/VPT/Spinner/Spinner.cs | 2 +- VisualPinball.Engine/VPT/Spinner/SpinnerData.cs | 2 +- VisualPinball.Engine/VPT/Spinner/SpinnerMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Surface/ISurfaceData.cs | 2 +- VisualPinball.Engine/VPT/Surface/Surface.cs | 2 +- VisualPinball.Engine/VPT/Surface/SurfaceData.cs | 2 +- VisualPinball.Engine/VPT/Surface/SurfaceMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Table/CustomInfoTags.cs | 2 +- VisualPinball.Engine/VPT/Table/FileTableContainer.cs | 2 +- VisualPinball.Engine/VPT/Table/HashWriter.cs | 2 +- VisualPinball.Engine/VPT/Table/Table.cs | 2 +- VisualPinball.Engine/VPT/Table/TableBuilder.cs | 2 +- VisualPinball.Engine/VPT/Table/TableContainer.cs | 2 +- VisualPinball.Engine/VPT/Table/TableData.cs | 2 +- VisualPinball.Engine/VPT/Table/TableLoader.cs | 2 +- VisualPinball.Engine/VPT/Table/TableMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Table/TableWriter.cs | 2 +- VisualPinball.Engine/VPT/TextBox/TextBox.cs | 2 +- VisualPinball.Engine/VPT/TextBox/TextBoxData.cs | 2 +- VisualPinball.Engine/VPT/Texture.cs | 2 +- VisualPinball.Engine/VPT/TextureData.cs | 2 +- VisualPinball.Engine/VPT/Timer/Timer.cs | 2 +- VisualPinball.Engine/VPT/Timer/TimerData.cs | 2 +- VisualPinball.Engine/VPT/Timer/TimerHit.cs | 2 +- VisualPinball.Engine/VPT/Timer/TimerOnOff.cs | 2 +- VisualPinball.Engine/VPT/Trigger/Trigger.cs | 2 +- VisualPinball.Engine/VPT/Trigger/TriggerData.cs | 2 +- VisualPinball.Engine/VPT/Trigger/TriggerMeshGenerator.cs | 2 +- VisualPinball.Engine/VPT/Trough/Trough.cs | 2 +- VisualPinball.Engine/VPT/Trough/TroughData.cs | 2 +- VisualPinball.Engine/VisualPinball.Engine.csproj | 2 +- VisualPinball.Resources/Meshes/BallMesh.cs | 2 +- VisualPinball.Resources/Meshes/Bulb.cs | 2 +- VisualPinball.Resources/Meshes/BulbSocket.cs | 2 +- VisualPinball.Resources/Meshes/BumperBase.cs | 2 +- VisualPinball.Resources/Meshes/BumperCap.cs | 2 +- VisualPinball.Resources/Meshes/BumperRing.cs | 2 +- VisualPinball.Resources/Meshes/BumperSocket.cs | 2 +- VisualPinball.Resources/Meshes/DropTargetT2.cs | 2 +- VisualPinball.Resources/Meshes/DropTargetT3.cs | 2 +- VisualPinball.Resources/Meshes/DropTargetT4.cs | 2 +- VisualPinball.Resources/Meshes/GateBracket.cs | 2 +- VisualPinball.Resources/Meshes/GateLongPlate.cs | 2 +- VisualPinball.Resources/Meshes/GatePlate.cs | 2 +- VisualPinball.Resources/Meshes/GateWire.cs | 2 +- VisualPinball.Resources/Meshes/GateWireRectangle.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetFatRectangle.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetFatSquare.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetRectangle.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetRound.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetT1Slim.cs | 2 +- VisualPinball.Resources/Meshes/HitTargetT2Slim.cs | 2 +- VisualPinball.Resources/Meshes/KickerCup.cs | 2 +- VisualPinball.Resources/Meshes/KickerGottlieb.cs | 2 +- VisualPinball.Resources/Meshes/KickerHole.cs | 2 +- VisualPinball.Resources/Meshes/KickerPlate.cs | 2 +- VisualPinball.Resources/Meshes/KickerSimpleHole.cs | 2 +- VisualPinball.Resources/Meshes/KickerT1.cs | 2 +- VisualPinball.Resources/Meshes/KickerWilliams.cs | 2 +- VisualPinball.Resources/Meshes/SpinnerBracket.cs | 2 +- VisualPinball.Resources/Meshes/SpinnerPlate.cs | 2 +- VisualPinball.Resources/Meshes/TriggerButton.cs | 2 +- VisualPinball.Resources/Meshes/TriggerSimple.cs | 2 +- VisualPinball.Resources/Meshes/TriggerStar.cs | 2 +- VisualPinball.Resources/Meshes/TriggerWireD.cs | 2 +- VisualPinball.Resources/Resource.cs | 2 +- VisualPinball.Resources/VisualPinball.Resources.csproj | 2 +- .../VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser.cs | 2 +- .../AssetBrowser/AssetBrowser_Init.cs | 2 +- .../VisualPinball.Unity.Editor/AssetBrowser/AssetLibrary.cs | 2 +- .../VisualPinball.Unity.Editor/AssetBrowser/AssetQuery.cs | 2 +- .../AssetBrowser/AssetQueryResult.cs | 2 +- .../AssetBrowser/AssetStructure/Asset.cs | 2 +- .../AssetBrowser/AssetStructure/AssetAttribute.cs | 2 +- .../AssetBrowser/AssetStructure/AssetAttributeElement.cs | 2 +- .../AssetStructure/AssetAttributePropertyDrawer.cs | 2 +- .../AssetBrowser/AssetStructure/AssetCategory.cs | 2 +- .../AssetBrowser/AssetStructure/AssetDetails.cs | 2 +- .../AssetBrowser/AssetStructure/AssetInspector.cs | 2 +- .../AssetBrowser/AssetStructure/AssetLink.cs | 2 +- .../AssetBrowser/AssetStructure/AssetLinkElement.cs | 2 +- .../AssetBrowser/AssetStructure/AssetLinkPropertyDrawer.cs | 2 +- .../AssetBrowser/AssetStructure/AssetMaterialCombination.cs | 2 +- .../AssetStructure/AssetMaterialCombinationElement.cs | 2 +- .../AssetBrowser/AssetStructure/AssetMaterialOverride.cs | 2 +- .../AssetStructure/AssetMaterialOverridePropertyDrawer.cs | 2 +- .../AssetBrowser/AssetStructure/AssetMaterialVariation.cs | 2 +- .../AssetStructure/AssetMaterialVariationPropertyDrawer.cs | 2 +- .../AssetStructure/AssetMaterialVariationsElement.cs | 2 +- .../AssetBrowser/AssetStructure/AssetQuality.cs | 2 +- .../AssetBrowser/AssetStructure/AssetQualityElement.cs | 2 +- .../AssetBrowser/AssetStructure/AssetTag.cs | 2 +- .../AssetBrowser/AssetStructure/AssetTagElement.cs | 2 +- .../AssetBrowser/AssetStructure/AssetTagPropertyDrawer.cs | 2 +- .../AssetBrowser/Elements/MaterialSlotDropdownElement.cs | 2 +- .../AssetBrowser/Elements/ObjectDropdownElement.cs | 2 +- .../AssetBrowser/Elements/PresetDropdownElement.cs | 2 +- .../AssetBrowser/Elements/PreviewEditorElement.cs | 2 +- .../AssetBrowser/LibraryAssetElement.cs | 2 +- .../AssetBrowser/LibraryCategoryElement.cs | 2 +- .../AssetBrowser/LibraryCategoryRenameElement.cs | 2 +- .../AssetBrowser/LibraryCategoryView.cs | 2 +- .../AssetBrowser/LibraryDatabase.cs | 2 +- .../VisualPinball.Unity.Editor/AssetBrowser/LibraryQuery.cs | 2 +- .../Common/ObjectReferencePicker.cs | 2 +- .../VisualPinball.Unity.Editor/Common/TableSelectorHook.cs | 2 +- .../VisualPinball.Unity.Editor/Display/DisplayInspector.cs | 2 +- .../Display/DotMatrixDisplayInspector.cs | 2 +- .../Display/ScoreReelDisplayInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Display/ScoreReelInspector.cs | 2 +- .../Display/SegmentDisplayInspector.cs | 2 +- .../VisualPinball.Unity.Editor/DragPoint/ControlPoint.cs | 2 +- .../DragPoint/DragPointMenuItems.cs | 2 +- .../VisualPinball.Unity.Editor/DragPoint/DragPointsHandler.cs | 2 +- .../DragPoint/DragPointsInspectorHelper.cs | 2 +- .../DragPoint/DragPointsSceneViewHandler.cs | 2 +- .../VisualPinball.Unity.Editor/DragPoint/FlipAxis.cs | 2 +- .../DragPoint/IDragPointsInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Editors/BaseEditor.cs | 2 +- .../VisualPinball.Unity.Editor/Editors/BaseEditorWindow.cs | 2 +- .../Editors/LockingTableEditorWindow.cs | 2 +- .../Game/CameraControllerInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Game/CameraSettingInspector.cs | 2 +- .../Game/DefaultGamelogicEngineInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Import/IVpxPrefab.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxImageConverter.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxImportEngine.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxImportWizard.cs | 2 +- .../Import/VpxImportWizardSettings.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxMenuImporter.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxPlayfieldPrefab.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxPrefab.cs | 2 +- .../VisualPinball.Unity.Editor/Import/VpxSceneConverter.cs | 2 +- .../Input/OnScreenInputSystemButtonInspector.cs | 2 +- .../Inspectors/CollisionSwitchInspector.cs | 2 +- .../Inspectors/DropTargetBankInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Inspectors/PlayerInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Inspectors/TroughInspector.cs | 2 +- .../VisualPinball.Unity.Editor/Layers/LayerEditor.cs | 2 +- .../VisualPinball.Unity.Editor/Layers/LayerHandler.cs | 2 +- .../VisualPinball.Unity.Editor/Layers/LayerTreeElement.cs | 2 +- .../VisualPinball.Unity.Editor/Layers/LayerTreeView.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity.Editor/Logging.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Coil/CoilListData.cs | 2 +- .../Managers/Coil/CoilListViewItemRenderer.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Coil/CoilManager.cs | 2 +- .../Managers/Collections/CollectionListData.cs | 2 +- .../Managers/Collections/CollectionManager.cs | 2 +- .../Managers/Collections/CollectionTreeElement.cs | 2 +- .../Managers/Collections/CollectionTreeView.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/IDeviceListData.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/IManagerListData.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/ImageListData.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/ImageManager.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Lamp/LampListData.cs | 2 +- .../Managers/Lamp/LampListViewItemRenderer.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Lamp/LampManager.cs | 2 +- .../Managers/ListViewItemRenderer.cs | 2 +- .../Managers/ManagerListColumnAttribute.cs | 2 +- .../Managers/ManagerListTextFieldPopup.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/ManagerListView.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/ManagerWindow.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/SoundListData.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/SoundManager.cs | 2 +- .../Managers/Switch/SwitchListData.cs | 2 +- .../Managers/Switch/SwitchListViewItemRenderer.cs | 2 +- .../Managers/Switch/SwitchManager.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Wire/WireListData.cs | 2 +- .../Managers/Wire/WireListViewItemRenderer.cs | 2 +- .../VisualPinball.Unity.Editor/Managers/Wire/WireManager.cs | 2 +- .../VisualPinball.Unity.Editor/Toolbox/ToolboxEditor.cs | 2 +- .../Utils/Dialogs/TextInputDialog.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/HandlesUtils.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Icons.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/LayoutUtility.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/ProjectSettingsUtil.cs | 2 +- .../Utils/PropertyDrawers/TypeRestrictionPropertyDrawer.cs | 2 +- .../Utils/PropertyDrawers/UnitPropertyDrawer.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/SceneViewFramer.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/TreeView/TreeElement.cs | 2 +- .../Utils/TreeView/TreeElementUtility.cs | 2 +- .../VisualPinball.Unity.Editor/Utils/TreeView/TreeView.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/AnimationInspector.cs | 2 +- .../VPT/Bumper/BumperColliderInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Bumper/BumperExtensions.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Bumper/BumperInspector.cs | 2 +- .../VPT/Bumper/BumperRingAnimationInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/ColliderInspector.cs | 2 +- .../VPT/Flipper/FlipperBaseMeshInspector.cs | 2 +- .../VPT/Flipper/FlipperColliderInspector.cs | 2 +- .../VPT/Flipper/FlipperExtensions.cs | 2 +- .../VPT/Flipper/FlipperInspector.cs | 2 +- .../VPT/Flipper/FlipperRubberMeshInspector.cs | 2 +- .../VPT/Gate/GateColliderInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Gate/GateExtensions.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Gate/GateInspector.cs | 2 +- .../VPT/Gate/GateLifterInspector.cs | 2 +- .../VPT/HitTarget/DropTargetAnimationInspector.cs | 2 +- .../VPT/HitTarget/DropTargetColliderInspector.cs | 2 +- .../VPT/HitTarget/DropTargetInspector.cs | 2 +- .../VPT/HitTarget/HitTargetAnimationInspector.cs | 2 +- .../VPT/HitTarget/HitTargetColliderInspector.cs | 2 +- .../VPT/HitTarget/HitTargetInspector.cs | 2 +- .../VPT/HitTarget/TargetColliderInspector.cs | 2 +- .../VPT/HitTarget/TargetExtensions.cs | 2 +- .../VPT/HitTarget/TargetInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/ItemInspector.cs | 2 +- .../VPT/Kicker/KickerColliderInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Kicker/KickerExtensions.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Light/LightExtensions.cs | 2 +- .../VPT/Light/LightGroupInspector.cs | 2 +- .../VPT/Light/LightInsertMeshInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Light/LightInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/MainInspector.cs | 2 +- .../VPT/Mech/CannonRotatorInspector.cs | 2 +- .../VPT/Mech/MechMarkPropertyDrawer.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Mech/RotatorInspector.cs | 2 +- .../VPT/Mech/ScoreMotorInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/MeshInspector.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideColliderInspector.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideExtensions.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideInspector.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideMeshInspector.cs | 2 +- .../VPT/PhysicsMaterialInspector.cs | 2 +- .../VPT/Playfield/PlayfieldColliderInspector.cs | 2 +- .../VPT/Playfield/PlayfieldInspector.cs | 2 +- .../VPT/Playfield/PlayfieldMeshInspector.cs | 2 +- .../VPT/Plunger/PlungerColliderInspector.cs | 2 +- .../VPT/Plunger/PlungerExtensions.cs | 2 +- .../VPT/Plunger/PlungerFlatMeshInspector.cs | 2 +- .../VPT/Plunger/PlungerInspector.cs | 2 +- .../VPT/Plunger/PlungerRodMeshInspector.cs | 2 +- .../VPT/Plunger/PlungerSpringMeshInspector.cs | 2 +- .../VPT/Primitive/PrimitiveColliderInspector.cs | 2 +- .../VPT/Primitive/PrimitiveExtensions.cs | 2 +- .../VPT/Primitive/PrimitiveInspector.cs | 2 +- .../VPT/Primitive/PrimitiveMeshInspector.cs | 2 +- .../VPT/Ramp/RampColliderInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Ramp/RampExtensions.cs | 2 +- .../VPT/Ramp/RampFloorMeshInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Ramp/RampInspector.cs | 2 +- .../VPT/Ramp/RampWallMeshInspector.cs | 2 +- .../VPT/Rubber/RubberColliderInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Rubber/RubberExtensions.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Rubber/RubberInspector.cs | 2 +- .../VPT/Rubber/RubberMeshInspector.cs | 2 +- .../VPT/Spinner/SpinnerColliderInspector.cs | 2 +- .../VPT/Spinner/SpinnerExtensions.cs | 2 +- .../VPT/Spinner/SpinnerInspector.cs | 2 +- .../VPT/Spinner/SpinnerPlateAnimationInspector.cs | 2 +- .../VPT/Surface/SlingshotInspector.cs | 2 +- .../VPT/Surface/SurfaceColliderInspector.cs | 2 +- .../VPT/Surface/SurfaceExtensions.cs | 2 +- .../VPT/Surface/SurfaceInspector.cs | 2 +- .../VPT/Surface/SurfaceSideMeshInspector.cs | 2 +- .../VPT/Surface/SurfaceTopMeshInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Table/TableInspector.cs | 2 +- .../VPT/Teleporter/TeleporterInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/TransformInspector.cs | 2 +- .../VPT/Trigger/TriggerColliderInspector.cs | 2 +- .../VPT/Trigger/TriggerExtensions.cs | 2 +- .../VPT/Trigger/TriggerInspector.cs | 2 +- .../VPT/Trigger/TriggerMeshInspector.cs | 2 +- .../VisualPinball.Unity.Editor/VPT/Trough/TroughExtensions.cs | 2 +- .../VisualPinball.Unity.Editor.csproj | 2 +- .../Matcher/Item/ItemMatchAttribute.cs | 2 +- .../Matcher/Item/NameMatchAttribute.cs | 2 +- .../Matcher/Item/RenderPipelineAttribute.cs | 2 +- .../Matcher/Table/AnyMatchAttribute.cs | 2 +- .../Matcher/Table/MetaMatchAttribute.cs | 2 +- .../Matcher/Table/RenderPipelineAttribute.cs | 2 +- .../Matcher/Table/TableMatchAttribute.cs | 2 +- .../Matcher/Table/TableNameMatchAttribute.cs | 2 +- .../VisualPinball.Unity.Patcher/Matcher/TablePatcher.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Common/Defaults.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Common/PatcherUtil.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Patcher.cs | 2 +- .../Patcher/Tables/CreatureFromTheBlackLagoon.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/Goldorak.cs | 2 +- .../Patcher/Tables/IndianaJones.cs | 2 +- .../Patcher/Tables/JurassicPark.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/Mississippi.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/Rock.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/Terminator2.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/TomAndJerry.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/Volley.cs | 2 +- .../VisualPinball.Unity.Patcher/Patcher/Tables/WipeOut.cs | 2 +- .../VisualPinball.Unity.Patcher.csproj | 2 +- .../VisualPinball.Unity.Test/Mappings/CoilPopulationTests.cs | 2 +- .../VisualPinball.Unity.Test/Mappings/LampPopulationTests.cs | 2 +- .../Mappings/SwitchPopulationTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/BumperTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/FlipperTests.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity.Test/VPT/GateTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/HitTargetTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/KickerTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/LegacyDataTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/LightTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/MetalWireGudieTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/PlungerTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/PrimitiveTests.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RampTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/RubberTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/SpinnerTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/SurfaceTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/TableTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/TriggerTests.cs | 2 +- .../VisualPinball.Unity.Test/VPT/TroughTests.cs | 2 +- .../VisualPinball.Unity.Test/VisualPinball.Unity.Test.csproj | 2 +- .../VisualPinball.Unity/Common/ApiAttribute.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/BlobArray.cs | 2 +- .../VisualPinball.Unity/Common/BoundingBoxComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/EdgeSet.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/Logging.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/Math.cs | 2 +- .../VisualPinball.Unity/Common/SerializableDictionary.cs | 2 +- .../VisualPinball.Unity/Common/TableSelector.cs | 2 +- .../VisualPinball.Unity/Common/TypeRestrictionAttribute.cs | 2 +- .../VisualPinball.Unity/Common/UnitAttribute.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/UnityTarget.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Common/UnsafeEx.cs | 2 +- .../VisualPinball.Unity/Display/DisplayComponent.cs | 2 +- .../VisualPinball.Unity/Display/DotMatrixDisplayComponent.cs | 2 +- .../VisualPinball.Unity/Display/ScoreReelComponent.cs | 2 +- .../VisualPinball.Unity/Display/ScoreReelDisplayComponent.cs | 2 +- .../VisualPinball.Unity/Display/SegmentDisplayComponent.cs | 2 +- .../VisualPinball.Unity/Extensions/ColorExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/MaterialExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/MathExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/Matrix3DExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/MeshExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/SoundExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/TextureExtensions.cs | 2 +- .../VisualPinball.Unity/Extensions/TransformExtensions.cs | 2 +- .../VisualPinball.Unity/Game/BallRollerComponent.cs | 2 +- .../VisualPinball.Unity/Game/CameraClipPlane.cs | 2 +- .../VisualPinball.Unity/Game/CameraController.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/CameraSetting.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/CoilPlayer.cs | 2 +- .../VisualPinball.Unity/Game/DebugBallCreator.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/DeviceCoil.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/DeviceSwitch.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/DisplayPlayer.cs | 2 +- .../VisualPinball.Unity/Game/Engine/DefaultGamelogicEngine.cs | 2 +- .../VisualPinball.Unity/Game/Engine/IGamelogicEngine.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/LampPlayer.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/Player.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/SwitchConfig.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/SwitchHandler.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/SwitchPlayer.cs | 2 +- .../Game/VisualPinballAutomaticWorldBootstrap.cs | 4 ++-- .../Game/VisualPinballSimulationSystemGroup.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Game/WirePlayer.cs | 2 +- .../VisualPinball.Unity/Import/IMaterialProvider.cs | 2 +- .../VisualPinball.Unity/Import/IMeshProvider.cs | 2 +- .../VisualPinball.Unity/Import/ITextureProvider.cs | 2 +- .../VisualPinball.Unity/Import/Job/TableLoader.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Import/MemHelper.cs | 2 +- .../VisualPinball.Unity/Import/PatcherManager.cs | 2 +- .../VisualPinball.Unity/Import/ScaleNormalizer.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Input/InputManager.cs | 2 +- .../VisualPinball.Unity/Input/OnScreenInputSystemButton.cs | 2 +- .../VisualPinball.Unity/Mappings/CoilMapping.cs | 2 +- .../VisualPinball.Unity/Mappings/LampMapping.cs | 2 +- .../VisualPinball.Unity/Mappings/MappingConfig.cs | 2 +- .../VisualPinball.Unity/Mappings/MappingEnums.cs | 2 +- .../VisualPinball.Unity/Mappings/SwitchMapping.cs | 2 +- .../VisualPinball.Unity/Mappings/WireMapping.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/CircleCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/Collider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/ColliderInfo.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/ColliderUtils.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/ICollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/Line3DCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/LineCollider.cs | 2 +- .../Physics/Collider/LineSlingshotCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/LineZCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/PlaneCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/PointCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collider/TriangleCollider.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/Aabb.cs | 2 +- .../Physics/Collision/BallColliderBounds.cs | 2 +- .../Physics/Collision/ColliderAllocationJob.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ColliderBlob.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ColliderBounds.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ColliderData.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ColliderHeader.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ColliderType.cs | 2 +- .../Physics/Collision/CollisionEventData.cs | 2 +- .../Physics/Collision/ContactBufferElement.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/ContactSystem.cs | 2 +- .../Physics/Collision/DynamicBroadPhaseSystem.cs | 2 +- .../Physics/Collision/DynamicCollisionSystem.cs | 2 +- .../Physics/Collision/DynamicNarrowPhaseSystem.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/KdNode.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/KdRoot.cs | 2 +- .../Physics/Collision/LineSlingshotData.cs | 2 +- .../Physics/Collision/OverlappingDynamicBufferElement.cs | 2 +- .../Physics/Collision/OverlappingStaticBufferElement.cs | 2 +- .../Physics/Collision/PhysicsMaterialData.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/QuadTree.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/QuadTreeBlob.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/QuadTreeCreator.cs | 2 +- .../VisualPinball.Unity/Physics/Collision/QuadTreeData.cs | 2 +- .../Physics/Collision/StaticBroadPhaseSystem.cs | 2 +- .../Physics/Collision/StaticCollisionSystem.cs | 2 +- .../Physics/Collision/StaticNarrowPhaseSystem.cs | 2 +- .../VisualPinball.Unity/Physics/DebugUI/DebugFlipperSlider.cs | 2 +- .../VisualPinball.Unity/Physics/DebugUI/DebugFlipperState.cs | 2 +- .../VisualPinball.Unity/Physics/DebugUI/IDebugUI.cs | 2 +- .../Physics/Engine/DefaultPhysicsEngine.cs | 2 +- .../VisualPinball.Unity/Physics/Engine/IPhysicsEngine.cs | 2 +- .../VisualPinball.Unity/Physics/Event/EventData.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/Physics/Physics.cs | 2 +- .../SystemGroup/CreateBallEntityCommandBufferSystem.cs | 2 +- .../Physics/SystemGroup/SimulateCycleSystemGroup.cs | 2 +- .../Physics/SystemGroup/TransformMeshesSystemGroup.cs | 2 +- .../Physics/SystemGroup/UpdateAnimationsSystemGroup.cs | 2 +- .../Physics/SystemGroup/UpdateDisplacementSystemGroup.cs | 2 +- .../Physics/SystemGroup/UpdateVelocitiesSystemGroup.cs | 2 +- .../VisualPinball.Unity/Rendering/IBallConverter.cs | 2 +- .../VisualPinball.Unity/Rendering/ILightConverter.cs | 2 +- .../VisualPinball.Unity/Rendering/IMaterialAdapter.cs | 2 +- .../VisualPinball.Unity/Rendering/IMaterialConverter.cs | 2 +- .../VisualPinball.Unity/Rendering/IPrefabProvider.cs | 2 +- .../VisualPinball.Unity/Rendering/RenderPipeline.cs | 2 +- .../Rendering/Standard/StandardBallConverter.cs | 2 +- .../Rendering/Standard/StandardLightConverter.cs | 2 +- .../Rendering/Standard/StandardMaterialAdapter.cs | 2 +- .../Rendering/Standard/StandardMaterialConverter.cs | 2 +- .../Rendering/Standard/StandardPrefabProvider.cs | 2 +- .../Rendering/Standard/StandardRenderPipeline.cs | 2 +- .../VisualPinball.Unity/VPT/AnimationComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallApi.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallCollider.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallData.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallDisplacementSystem.cs | 4 ++-- .../VisualPinball.Unity/VPT/Ball/BallInsideOfBufferElement.cs | 2 +- .../VPT/Ball/BallLastPositionsBufferElement.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallManager.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallMovementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallRingCounterSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallSpinHackSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Ball/BallVelocitySystem.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperApi.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperCollider.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperComponent.cs | 2 +- .../VPT/Bumper/BumperRingAnimationComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperRingAnimationData.cs | 2 +- .../VPT/Bumper/BumperRingAnimationSystem.cs | 2 +- .../VPT/Bumper/BumperRingMovementSystem.cs | 2 +- .../VPT/Bumper/BumperSkirtAnimationComponent.cs | 2 +- .../VPT/Bumper/BumperSkirtAnimationData.cs | 2 +- .../VPT/Bumper/BumperSkirtAnimationSystem.cs | 2 +- .../VPT/Bumper/BumperSkirtMovementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Bumper/BumperStaticData.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/CollidableApi.cs | 2 +- .../VisualPinball.Unity/VPT/ColliderComponent.cs | 2 +- .../VPT/CollisionSwitch/CollisionSwitchApi.cs | 2 +- .../VPT/CollisionSwitch/CollisionSwitchComponent.cs | 2 +- .../VPT/DropTargetBank/DropTargetBankApi.cs | 2 +- .../VPT/DropTargetBank/DropTargetBankComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/EventArgs.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperApi.cs | 2 +- .../VPT/Flipper/FlipperBaseMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperCollider.cs | 2 +- .../VPT/Flipper/FlipperColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperCorrection.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperCorrectionAsset.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperCorrectionBlob.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperCorrectionData.cs | 2 +- .../VPT/Flipper/FlipperDisplacementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperHitData.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperMovementData.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperRotateSystem.cs | 2 +- .../VPT/Flipper/FlipperRubberMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperStaticData.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperTricksData.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperVelocityData.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/FlipperVelocitySystem.cs | 2 +- .../VisualPinball.Unity/VPT/Flipper/SolenoidStateData.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateApi.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateCollider.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateDisplacementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateLifterApi.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateLifterComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateMovementData.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateMovementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateStaticData.cs | 2 +- .../VisualPinball.Unity/VPT/Gate/GateVelocitySystem.cs | 2 +- .../VPT/Gate/GateWireAnimationComponent.cs | 2 +- .../VPT/HitTarget/DropTargetAnimationComponent.cs | 2 +- .../VPT/HitTarget/DropTargetAnimationData.cs | 2 +- .../VPT/HitTarget/DropTargetAnimationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/DropTargetApi.cs | 2 +- .../VPT/HitTarget/DropTargetColliderComponent.cs | 2 +- .../VPT/HitTarget/DropTargetColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/DropTargetComponent.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/DropTargetStaticData.cs | 2 +- .../VPT/HitTarget/DropTargetTransformationSystem.cs | 2 +- .../VPT/HitTarget/HitTargetAnimationComponent.cs | 2 +- .../VPT/HitTarget/HitTargetAnimationData.cs | 2 +- .../VPT/HitTarget/HitTargetAnimationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/HitTargetApi.cs | 2 +- .../VPT/HitTarget/HitTargetColliderComponent.cs | 2 +- .../VPT/HitTarget/HitTargetColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/HitTargetComponent.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/HitTargetStaticData.cs | 2 +- .../VPT/HitTarget/HitTargetTransformationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/TargetCollider.cs | 2 +- .../VPT/HitTarget/TargetColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/HitTarget/TargetComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IAnimationComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/IApi.cs | 2 +- .../VisualPinball.Unity/VPT/ICoilDeviceComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IDeviceComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IIdentifiableItemComponent.cs | 2 +- .../VisualPinball.Unity/VPT/ILampDeviceComponent.cs | 2 +- .../VisualPinball.Unity/VPT/ILayerableItemComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/IMainComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IMainRenderableComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/IMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IRotatableComponent.cs | 2 +- .../VisualPinball.Unity/VPT/ISurfaceComponent.cs | 2 +- .../VisualPinball.Unity/VPT/ISwitchDeviceComponent.cs | 2 +- .../VisualPinball.Unity/VPT/ITriggerComponent.cs | 2 +- .../VisualPinball.Unity/VPT/IWireableComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/ItemApi.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/ItemComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerApi.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerCollider.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerColliderMeshData.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerCollisionData.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Kicker/KickerStaticData.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightApi.cs | 2 +- .../VisualPinball.Unity/VPT/Light/LightComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Light/LightGroupApi.cs | 2 +- .../VisualPinball.Unity/VPT/Light/LightGroupComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Light/LightInsertMeshComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/MainComponent.cs | 2 +- .../VisualPinball.Unity/VPT/MainRenderableComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/CannonRotatorComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/IMechHandler.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/MechMark.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/RotatorComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/ScoreMotorApi.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/StepRotatorMechApi.cs | 2 +- .../VisualPinball.Unity/VPT/Mech/StepRotatorMechComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/MeshComponent.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideApi.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideColliderComponent.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideColliderGenerator.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideComponent.cs | 2 +- .../VPT/MetalWireGuide/MetalWireGuideMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/PhysicsMaterialAsset.cs | 2 +- .../VisualPinball.Unity/VPT/Playfield/PlayfieldApi.cs | 2 +- .../VPT/Playfield/PlayfieldColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Playfield/PlayfieldComponent.cs | 2 +- .../VPT/Playfield/PlayfieldMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerAnimationData.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerAnimationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerApi.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerCollider.cs | 2 +- .../VPT/Plunger/PlungerColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerColliderData.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerCommands.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerComponent.cs | 2 +- .../VPT/Plunger/PlungerDisplacementSystem.cs | 2 +- .../VPT/Plunger/PlungerFlatMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerMovementData.cs | 2 +- .../VPT/Plunger/PlungerRodMeshComponent.cs | 2 +- .../VPT/Plunger/PlungerSpringMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerStaticData.cs | 2 +- .../VPT/Plunger/PlungerTransformationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerVelocityData.cs | 2 +- .../VisualPinball.Unity/VPT/Plunger/PlungerVelocitySystem.cs | 2 +- .../VisualPinball.Unity/VPT/Primitive/PrimitiveApi.cs | 2 +- .../VPT/Primitive/PrimitiveColliderComponent.cs | 2 +- .../VPT/Primitive/PrimitiveColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Primitive/PrimitiveComponent.cs | 2 +- .../VPT/Primitive/PrimitiveMeshComponent.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampApi.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampFloorMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampWallMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Ramp/RampWireMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Rubber/RubberApi.cs | 2 +- .../VisualPinball.Unity/VPT/Rubber/RubberColliderComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Rubber/RubberColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Rubber/RubberComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Rubber/RubberMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerApi.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerCollider.cs | 2 +- .../VPT/Spinner/SpinnerColliderComponent.cs | 2 +- .../VPT/Spinner/SpinnerColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerComponent.cs | 2 +- .../VPT/Spinner/SpinnerDisplacementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerMovementData.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerMovementSystem.cs | 2 +- .../VPT/Spinner/SpinnerPlateAnimationComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerStaticData.cs | 2 +- .../VisualPinball.Unity/VPT/Spinner/SpinnerVelocitySystem.cs | 2 +- .../VisualPinball.Unity/VPT/Surface/SlingshotApi.cs | 2 +- .../VisualPinball.Unity/VPT/Surface/SlingshotComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Surface/SurfaceApi.cs | 2 +- .../VPT/Surface/SurfaceColliderComponent.cs | 2 +- .../VPT/Surface/SurfaceColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Surface/SurfaceComponent.cs | 2 +- .../VPT/Surface/SurfaceSideMeshComponent.cs | 2 +- .../VPT/Surface/SurfaceTopMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Table/LegacyContainer.cs | 2 +- .../VisualPinball.Unity/VPT/Table/SceneTableContainer.cs | 2 +- VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableApi.cs | 2 +- .../VisualPinball.Unity/VPT/Table/TableComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Teleporter/TeleporterApi.cs | 2 +- .../VisualPinball.Unity/VPT/Teleporter/TeleporterComponent.cs | 2 +- .../VPT/Trigger/TriggerAnimationComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerAnimationData.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerAnimationSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerApi.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerCollider.cs | 2 +- .../VPT/Trigger/TriggerColliderComponent.cs | 2 +- .../VPT/Trigger/TriggerColliderGenerator.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerMeshComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerMovementData.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerMovementSystem.cs | 2 +- .../VisualPinball.Unity/VPT/Trigger/TriggerStaticData.cs | 2 +- .../VisualPinball.Unity/VPT/Trough/TroughApi.cs | 2 +- .../VisualPinball.Unity/VPT/Trough/TroughComponent.cs | 2 +- .../VisualPinball.Unity/VPT/Trough/TroughExtensions.cs | 2 +- .../VisualPinball.Unity/VisualPinball.Unity.csproj | 2 +- 814 files changed, 816 insertions(+), 816 deletions(-) diff --git a/VisualPinball.Engine.Test/Common/EngineTests.cs b/VisualPinball.Engine.Test/Common/EngineTests.cs index fba806c8e..29f9fe087 100644 --- a/VisualPinball.Engine.Test/Common/EngineTests.cs +++ b/VisualPinball.Engine.Test/Common/EngineTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Common/StringTests.cs b/VisualPinball.Engine.Test/Common/StringTests.cs index 9f71e15a5..abd31954d 100644 --- a/VisualPinball.Engine.Test/Common/StringTests.cs +++ b/VisualPinball.Engine.Test/Common/StringTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/IO/BiffAttributeTest.cs b/VisualPinball.Engine.Test/IO/BiffAttributeTest.cs index fb9297f99..7d8cce156 100644 --- a/VisualPinball.Engine.Test/IO/BiffAttributeTest.cs +++ b/VisualPinball.Engine.Test/IO/BiffAttributeTest.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/IO/ConsistencyTests.cs b/VisualPinball.Engine.Test/IO/ConsistencyTests.cs index 118294c71..a28ba478a 100644 --- a/VisualPinball.Engine.Test/IO/ConsistencyTests.cs +++ b/VisualPinball.Engine.Test/IO/ConsistencyTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Math/ColorTests.cs b/VisualPinball.Engine.Test/Math/ColorTests.cs index 08650d0a0..e104e0e67 100644 --- a/VisualPinball.Engine.Test/Math/ColorTests.cs +++ b/VisualPinball.Engine.Test/Math/ColorTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Math/MathTests.cs b/VisualPinball.Engine.Test/Math/MathTests.cs index 7e81dff99..241791fd1 100644 --- a/VisualPinball.Engine.Test/Math/MathTests.cs +++ b/VisualPinball.Engine.Test/Math/MathTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Math/VectorTests.cs b/VisualPinball.Engine.Test/Math/VectorTests.cs index 9bed84998..46f0beff6 100644 --- a/VisualPinball.Engine.Test/Math/VectorTests.cs +++ b/VisualPinball.Engine.Test/Math/VectorTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Test/BaseTests.cs b/VisualPinball.Engine.Test/Test/BaseTests.cs index 75e601678..093888f30 100644 --- a/VisualPinball.Engine.Test/Test/BaseTests.cs +++ b/VisualPinball.Engine.Test/Test/BaseTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Test/Fixtures.cs b/VisualPinball.Engine.Test/Test/Fixtures.cs index 7af7059cb..93d80fead 100644 --- a/VisualPinball.Engine.Test/Test/Fixtures.cs +++ b/VisualPinball.Engine.Test/Test/Fixtures.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/Test/MeshTests.cs b/VisualPinball.Engine.Test/Test/MeshTests.cs index e343644fa..6b3b0e094 100644 --- a/VisualPinball.Engine.Test/Test/MeshTests.cs +++ b/VisualPinball.Engine.Test/Test/MeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Bumper/BumperDataTests.cs b/VisualPinball.Engine.Test/VPT/Bumper/BumperDataTests.cs index 1f628ce07..fa80db287 100644 --- a/VisualPinball.Engine.Test/VPT/Bumper/BumperDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Bumper/BumperDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Bumper/BumperMeshTests.cs b/VisualPinball.Engine.Test/VPT/Bumper/BumperMeshTests.cs index ccef60c25..de26181b8 100644 --- a/VisualPinball.Engine.Test/VPT/Bumper/BumperMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Bumper/BumperMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Collection/CollectionDataTests.cs b/VisualPinball.Engine.Test/VPT/Collection/CollectionDataTests.cs index 6cbf89221..3cbf15c52 100644 --- a/VisualPinball.Engine.Test/VPT/Collection/CollectionDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Collection/CollectionDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/DebugTests.cs b/VisualPinball.Engine.Test/VPT/DebugTests.cs index a197bed15..0119c1dee 100644 --- a/VisualPinball.Engine.Test/VPT/DebugTests.cs +++ b/VisualPinball.Engine.Test/VPT/DebugTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Decal/DecalDataTests.cs b/VisualPinball.Engine.Test/VPT/Decal/DecalDataTests.cs index 6199abf26..584770733 100644 --- a/VisualPinball.Engine.Test/VPT/Decal/DecalDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Decal/DecalDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/DispReel/DispReelDataTests.cs b/VisualPinball.Engine.Test/VPT/DispReel/DispReelDataTests.cs index 0fb9fc276..74fa8010d 100644 --- a/VisualPinball.Engine.Test/VPT/DispReel/DispReelDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/DispReel/DispReelDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Flasher/FlasherDataTests.cs b/VisualPinball.Engine.Test/VPT/Flasher/FlasherDataTests.cs index 2a54025e4..e122ae083 100644 --- a/VisualPinball.Engine.Test/VPT/Flasher/FlasherDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Flasher/FlasherDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Flipper/FlipperDataTests.cs b/VisualPinball.Engine.Test/VPT/Flipper/FlipperDataTests.cs index e48822bf1..6314c6bc7 100644 --- a/VisualPinball.Engine.Test/VPT/Flipper/FlipperDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Flipper/FlipperDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Flipper/FlipperMeshTests.cs b/VisualPinball.Engine.Test/VPT/Flipper/FlipperMeshTests.cs index 29c00e068..3d071886c 100644 --- a/VisualPinball.Engine.Test/VPT/Flipper/FlipperMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Flipper/FlipperMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Gate/GateDataTests.cs b/VisualPinball.Engine.Test/VPT/Gate/GateDataTests.cs index b390200aa..3e249cbe4 100644 --- a/VisualPinball.Engine.Test/VPT/Gate/GateDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Gate/GateDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Gate/GateMeshTests.cs b/VisualPinball.Engine.Test/VPT/Gate/GateMeshTests.cs index 424ff1177..441caeefc 100644 --- a/VisualPinball.Engine.Test/VPT/Gate/GateMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Gate/GateMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetDataTests.cs b/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetDataTests.cs index c2a7e03e9..4819630e0 100644 --- a/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetMeshTests.cs b/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetMeshTests.cs index a58207bb3..cbb278ad3 100644 --- a/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/HitTarget/HitTargetMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Kicker/KickerDataTests.cs b/VisualPinball.Engine.Test/VPT/Kicker/KickerDataTests.cs index 307455322..c53e5fe7e 100644 --- a/VisualPinball.Engine.Test/VPT/Kicker/KickerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Kicker/KickerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Kicker/KickerMeshTests.cs b/VisualPinball.Engine.Test/VPT/Kicker/KickerMeshTests.cs index ec74ad835..a95f79902 100644 --- a/VisualPinball.Engine.Test/VPT/Kicker/KickerMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Kicker/KickerMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Layers/LayerDataTests.cs b/VisualPinball.Engine.Test/VPT/Layers/LayerDataTests.cs index f981566c5..2ca3908ae 100644 --- a/VisualPinball.Engine.Test/VPT/Layers/LayerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Layers/LayerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Light/LightDataTests.cs b/VisualPinball.Engine.Test/VPT/Light/LightDataTests.cs index 980b7b3c9..f700ad0f1 100644 --- a/VisualPinball.Engine.Test/VPT/Light/LightDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Light/LightDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/LightSeq/LightSeqDataTests.cs b/VisualPinball.Engine.Test/VPT/LightSeq/LightSeqDataTests.cs index 22d264da1..f210863e5 100644 --- a/VisualPinball.Engine.Test/VPT/LightSeq/LightSeqDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/LightSeq/LightSeqDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/MaterialDataTests.cs b/VisualPinball.Engine.Test/VPT/MaterialDataTests.cs index a1bbe22b1..24306bd62 100644 --- a/VisualPinball.Engine.Test/VPT/MaterialDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/MaterialDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/MaterialFileTests.cs b/VisualPinball.Engine.Test/VPT/MaterialFileTests.cs index 3375a03d3..cbaa44999 100644 --- a/VisualPinball.Engine.Test/VPT/MaterialFileTests.cs +++ b/VisualPinball.Engine.Test/VPT/MaterialFileTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideDataTests.cs b/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideDataTests.cs index c89bbb564..be50a7670 100644 --- a/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideMeshTest.cs b/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideMeshTest.cs index 0a88bbaac..d6a56be71 100644 --- a/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideMeshTest.cs +++ b/VisualPinball.Engine.Test/VPT/MetalWireGuide/MetalWireGuideMeshTest.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Plunger/PlungerDataTests.cs b/VisualPinball.Engine.Test/VPT/Plunger/PlungerDataTests.cs index 20f110dc9..b3abf663b 100644 --- a/VisualPinball.Engine.Test/VPT/Plunger/PlungerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Plunger/PlungerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveDataTests.cs b/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveDataTests.cs index b97ce3358..65cf66c5a 100644 --- a/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveMeshTests.cs b/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveMeshTests.cs index c626dd5df..4424c27fc 100644 --- a/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Primitive/PrimitiveMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Ramp/RampDataTests.cs b/VisualPinball.Engine.Test/VPT/Ramp/RampDataTests.cs index 09f656134..88c44a156 100644 --- a/VisualPinball.Engine.Test/VPT/Ramp/RampDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Ramp/RampDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Ramp/RampMeshTests.cs b/VisualPinball.Engine.Test/VPT/Ramp/RampMeshTests.cs index 7c145a6a6..8d1cff0e1 100644 --- a/VisualPinball.Engine.Test/VPT/Ramp/RampMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Ramp/RampMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Rubber/RubberDataTests.cs b/VisualPinball.Engine.Test/VPT/Rubber/RubberDataTests.cs index 8775a31b7..d15c0c53b 100644 --- a/VisualPinball.Engine.Test/VPT/Rubber/RubberDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Rubber/RubberDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Rubber/RubberMeshTest.cs b/VisualPinball.Engine.Test/VPT/Rubber/RubberMeshTest.cs index c67ce8361..20ae179d5 100644 --- a/VisualPinball.Engine.Test/VPT/Rubber/RubberMeshTest.cs +++ b/VisualPinball.Engine.Test/VPT/Rubber/RubberMeshTest.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Sound/SoundDataTests.cs b/VisualPinball.Engine.Test/VPT/Sound/SoundDataTests.cs index d3989946a..69ff133cf 100644 --- a/VisualPinball.Engine.Test/VPT/Sound/SoundDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Sound/SoundDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Spinner/SpinnerDataTests.cs b/VisualPinball.Engine.Test/VPT/Spinner/SpinnerDataTests.cs index 8b1d22d0e..b14e3b328 100644 --- a/VisualPinball.Engine.Test/VPT/Spinner/SpinnerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Spinner/SpinnerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Spinner/SpinnerMeshTests.cs b/VisualPinball.Engine.Test/VPT/Spinner/SpinnerMeshTests.cs index f446b7baf..6fd26079e 100644 --- a/VisualPinball.Engine.Test/VPT/Spinner/SpinnerMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Spinner/SpinnerMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Surface/SurfaceDataTests.cs b/VisualPinball.Engine.Test/VPT/Surface/SurfaceDataTests.cs index 8fa5ebe10..edd7b9005 100644 --- a/VisualPinball.Engine.Test/VPT/Surface/SurfaceDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Surface/SurfaceDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Surface/SurfaceMeshTests.cs b/VisualPinball.Engine.Test/VPT/Surface/SurfaceMeshTests.cs index 25b1c42b0..74009074c 100644 --- a/VisualPinball.Engine.Test/VPT/Surface/SurfaceMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Surface/SurfaceMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Surface/SurfacePhysicsTests.cs b/VisualPinball.Engine.Test/VPT/Surface/SurfacePhysicsTests.cs index 35c830d8d..d78d3b4c3 100644 --- a/VisualPinball.Engine.Test/VPT/Surface/SurfacePhysicsTests.cs +++ b/VisualPinball.Engine.Test/VPT/Surface/SurfacePhysicsTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Table/TableDataTests.cs b/VisualPinball.Engine.Test/VPT/Table/TableDataTests.cs index b6263ec77..61608ff7a 100644 --- a/VisualPinball.Engine.Test/VPT/Table/TableDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Table/TableDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Table/TableMeshTests.cs b/VisualPinball.Engine.Test/VPT/Table/TableMeshTests.cs index a39637a85..510fec8f0 100644 --- a/VisualPinball.Engine.Test/VPT/Table/TableMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Table/TableMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Textbox/TextBoxDataTests.cs b/VisualPinball.Engine.Test/VPT/Textbox/TextBoxDataTests.cs index d24469f2c..e38ab6965 100644 --- a/VisualPinball.Engine.Test/VPT/Textbox/TextBoxDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Textbox/TextBoxDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/TextureBitmapTests.cs b/VisualPinball.Engine.Test/VPT/TextureBitmapTests.cs index 1ada69da7..9939afd4a 100644 --- a/VisualPinball.Engine.Test/VPT/TextureBitmapTests.cs +++ b/VisualPinball.Engine.Test/VPT/TextureBitmapTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/TextureDataTests.cs b/VisualPinball.Engine.Test/VPT/TextureDataTests.cs index 3294280c4..d847ca41a 100644 --- a/VisualPinball.Engine.Test/VPT/TextureDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/TextureDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Timer/TimerDataTests.cs b/VisualPinball.Engine.Test/VPT/Timer/TimerDataTests.cs index 731020ed1..a62e51ded 100644 --- a/VisualPinball.Engine.Test/VPT/Timer/TimerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Timer/TimerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Trigger/TriggerDataTests.cs b/VisualPinball.Engine.Test/VPT/Trigger/TriggerDataTests.cs index a668b80c7..a2b9acead 100644 --- a/VisualPinball.Engine.Test/VPT/Trigger/TriggerDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Trigger/TriggerDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Trigger/TriggerMeshTests.cs b/VisualPinball.Engine.Test/VPT/Trigger/TriggerMeshTests.cs index baf81690c..f6208e595 100644 --- a/VisualPinball.Engine.Test/VPT/Trigger/TriggerMeshTests.cs +++ b/VisualPinball.Engine.Test/VPT/Trigger/TriggerMeshTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VPT/Trough/TroughDataTests.cs b/VisualPinball.Engine.Test/VPT/Trough/TroughDataTests.cs index 1c26a3bab..cb05b4026 100644 --- a/VisualPinball.Engine.Test/VPT/Trough/TroughDataTests.cs +++ b/VisualPinball.Engine.Test/VPT/Trough/TroughDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine.Test/VisualPinball.Engine.Test.csproj b/VisualPinball.Engine.Test/VisualPinball.Engine.Test.csproj index c2c799240..6affd1535 100644 --- a/VisualPinball.Engine.Test/VisualPinball.Engine.Test.csproj +++ b/VisualPinball.Engine.Test/VisualPinball.Engine.Test.csproj @@ -6,7 +6,7 @@ VisualPinball.Engine.Test A .NET port of Visual Pinball in C# freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Engine/Common/Constants.cs b/VisualPinball.Engine/Common/Constants.cs index 25f37dce7..a9fca5a72 100644 --- a/VisualPinball.Engine/Common/Constants.cs +++ b/VisualPinball.Engine/Common/Constants.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Common/EngineProvider.cs b/VisualPinball.Engine/Common/EngineProvider.cs index 690d36690..287ed5b59 100644 --- a/VisualPinball.Engine/Common/EngineProvider.cs +++ b/VisualPinball.Engine/Common/EngineProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Common/Logging.cs b/VisualPinball.Engine/Common/Logging.cs index f66192bca..c707a9bd6 100644 --- a/VisualPinball.Engine/Common/Logging.cs +++ b/VisualPinball.Engine/Common/Logging.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Common/Profiler.cs b/VisualPinball.Engine/Common/Profiler.cs index 2448c1768..4f280620a 100644 --- a/VisualPinball.Engine/Common/Profiler.cs +++ b/VisualPinball.Engine/Common/Profiler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Common/Registry.cs b/VisualPinball.Engine/Common/Registry.cs index adfeea2d3..cb362c3d4 100644 --- a/VisualPinball.Engine/Common/Registry.cs +++ b/VisualPinball.Engine/Common/Registry.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Common/StringExtensions.cs b/VisualPinball.Engine/Common/StringExtensions.cs index 8d4f99fd7..14b7819b2 100644 --- a/VisualPinball.Engine/Common/StringExtensions.cs +++ b/VisualPinball.Engine/Common/StringExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Engines/GamelogicEngineCoil.cs b/VisualPinball.Engine/Game/Engines/GamelogicEngineCoil.cs index c314c77eb..ae18ead5e 100644 --- a/VisualPinball.Engine/Game/Engines/GamelogicEngineCoil.cs +++ b/VisualPinball.Engine/Game/Engines/GamelogicEngineCoil.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Engines/GamelogicEngineLamp.cs b/VisualPinball.Engine/Game/Engines/GamelogicEngineLamp.cs index 918e40c24..a0225441a 100644 --- a/VisualPinball.Engine/Game/Engines/GamelogicEngineLamp.cs +++ b/VisualPinball.Engine/Game/Engines/GamelogicEngineLamp.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Engines/GamelogicEngineSwitch.cs b/VisualPinball.Engine/Game/Engines/GamelogicEngineSwitch.cs index ef8583b27..d89de0e9b 100644 --- a/VisualPinball.Engine/Game/Engines/GamelogicEngineSwitch.cs +++ b/VisualPinball.Engine/Game/Engines/GamelogicEngineSwitch.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Engines/GamelogicEngineWire.cs b/VisualPinball.Engine/Game/Engines/GamelogicEngineWire.cs index fcea3839f..91320d297 100644 --- a/VisualPinball.Engine/Game/Engines/GamelogicEngineWire.cs +++ b/VisualPinball.Engine/Game/Engines/GamelogicEngineWire.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Engines/IGamelogicEngineDeviceItem.cs b/VisualPinball.Engine/Game/Engines/IGamelogicEngineDeviceItem.cs index 289482782..5e2d10fc0 100644 --- a/VisualPinball.Engine/Game/Engines/IGamelogicEngineDeviceItem.cs +++ b/VisualPinball.Engine/Game/Engines/IGamelogicEngineDeviceItem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/EventId.cs b/VisualPinball.Engine/Game/EventId.cs index 3cdd0c41d..ed8e52253 100644 --- a/VisualPinball.Engine/Game/EventId.cs +++ b/VisualPinball.Engine/Game/EventId.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/IBallCreationPosition.cs b/VisualPinball.Engine/Game/IBallCreationPosition.cs index 2b2c5c5b1..1e261c602 100644 --- a/VisualPinball.Engine/Game/IBallCreationPosition.cs +++ b/VisualPinball.Engine/Game/IBallCreationPosition.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/IPlayable.cs b/VisualPinball.Engine/Game/IPlayable.cs index 4750247ab..6cd3b82a6 100644 --- a/VisualPinball.Engine/Game/IPlayable.cs +++ b/VisualPinball.Engine/Game/IPlayable.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/IRenderable.cs b/VisualPinball.Engine/Game/IRenderable.cs index a679d7eb7..1e306c4bc 100644 --- a/VisualPinball.Engine/Game/IRenderable.cs +++ b/VisualPinball.Engine/Game/IRenderable.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Game/Origin.cs b/VisualPinball.Engine/Game/Origin.cs index 3bf378049..e54f236de 100644 --- a/VisualPinball.Engine/Game/Origin.cs +++ b/VisualPinball.Engine/Game/Origin.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffAttribute.cs b/VisualPinball.Engine/IO/BiffAttribute.cs index a5c1474c1..aea64997c 100644 --- a/VisualPinball.Engine/IO/BiffAttribute.cs +++ b/VisualPinball.Engine/IO/BiffAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffBoolAttribute.cs b/VisualPinball.Engine/IO/BiffBoolAttribute.cs index 11ed22496..b198ec92f 100644 --- a/VisualPinball.Engine/IO/BiffBoolAttribute.cs +++ b/VisualPinball.Engine/IO/BiffBoolAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffByteAttribute.cs b/VisualPinball.Engine/IO/BiffByteAttribute.cs index ed9f2e7e9..a5aa44f56 100644 --- a/VisualPinball.Engine/IO/BiffByteAttribute.cs +++ b/VisualPinball.Engine/IO/BiffByteAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffColorAttribute.cs b/VisualPinball.Engine/IO/BiffColorAttribute.cs index e63e461a2..f5f230a5b 100644 --- a/VisualPinball.Engine/IO/BiffColorAttribute.cs +++ b/VisualPinball.Engine/IO/BiffColorAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffData.cs b/VisualPinball.Engine/IO/BiffData.cs index bdf3c06f9..df9282fdd 100644 --- a/VisualPinball.Engine/IO/BiffData.cs +++ b/VisualPinball.Engine/IO/BiffData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffDragPointAttribute.cs b/VisualPinball.Engine/IO/BiffDragPointAttribute.cs index fbbd3b565..a19afaedd 100644 --- a/VisualPinball.Engine/IO/BiffDragPointAttribute.cs +++ b/VisualPinball.Engine/IO/BiffDragPointAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffFloatAttribute.cs b/VisualPinball.Engine/IO/BiffFloatAttribute.cs index f8c3dda44..6b0534682 100644 --- a/VisualPinball.Engine/IO/BiffFloatAttribute.cs +++ b/VisualPinball.Engine/IO/BiffFloatAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffFontAttribute.cs b/VisualPinball.Engine/IO/BiffFontAttribute.cs index 459435f5a..414836571 100644 --- a/VisualPinball.Engine/IO/BiffFontAttribute.cs +++ b/VisualPinball.Engine/IO/BiffFontAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffIgnoreAttribute.cs b/VisualPinball.Engine/IO/BiffIgnoreAttribute.cs index 5adf3e784..3b123338d 100644 --- a/VisualPinball.Engine/IO/BiffIgnoreAttribute.cs +++ b/VisualPinball.Engine/IO/BiffIgnoreAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffIntAttribute.cs b/VisualPinball.Engine/IO/BiffIntAttribute.cs index d4795e9f2..63fa806bf 100644 --- a/VisualPinball.Engine/IO/BiffIntAttribute.cs +++ b/VisualPinball.Engine/IO/BiffIntAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffStringAttribute.cs b/VisualPinball.Engine/IO/BiffStringAttribute.cs index ff4bf50bb..c3e5ed3c3 100644 --- a/VisualPinball.Engine/IO/BiffStringAttribute.cs +++ b/VisualPinball.Engine/IO/BiffStringAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffTagAttribute.cs b/VisualPinball.Engine/IO/BiffTagAttribute.cs index db6ab0ddd..b7f85103a 100644 --- a/VisualPinball.Engine/IO/BiffTagAttribute.cs +++ b/VisualPinball.Engine/IO/BiffTagAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffUtil.cs b/VisualPinball.Engine/IO/BiffUtil.cs index 464492b86..c32790971 100644 --- a/VisualPinball.Engine/IO/BiffUtil.cs +++ b/VisualPinball.Engine/IO/BiffUtil.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffVertexAttribute.cs b/VisualPinball.Engine/IO/BiffVertexAttribute.cs index 4c7dc48bf..6805af89b 100644 --- a/VisualPinball.Engine/IO/BiffVertexAttribute.cs +++ b/VisualPinball.Engine/IO/BiffVertexAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/IO/BiffZlib.cs b/VisualPinball.Engine/IO/BiffZlib.cs index 006e86641..d5f2aa084 100644 --- a/VisualPinball.Engine/IO/BiffZlib.cs +++ b/VisualPinball.Engine/IO/BiffZlib.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/CatmullCurve.cs b/VisualPinball.Engine/Math/CatmullCurve.cs index 7962b5799..e29f2963a 100644 --- a/VisualPinball.Engine/Math/CatmullCurve.cs +++ b/VisualPinball.Engine/Math/CatmullCurve.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Color.cs b/VisualPinball.Engine/Math/Color.cs index 8031600d5..1f7e0f1a4 100644 --- a/VisualPinball.Engine/Math/Color.cs +++ b/VisualPinball.Engine/Math/Color.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/DragPoint.cs b/VisualPinball.Engine/Math/DragPoint.cs index 0bdb5a986..e18d0514c 100644 --- a/VisualPinball.Engine/Math/DragPoint.cs +++ b/VisualPinball.Engine/Math/DragPoint.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/DragPointData.cs b/VisualPinball.Engine/Math/DragPointData.cs index 93f68a019..626e6ba7e 100644 --- a/VisualPinball.Engine/Math/DragPointData.cs +++ b/VisualPinball.Engine/Math/DragPointData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/MathF.cs b/VisualPinball.Engine/Math/MathF.cs index 764862fd4..efe0b2a2f 100644 --- a/VisualPinball.Engine/Math/MathF.cs +++ b/VisualPinball.Engine/Math/MathF.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Matrix3D.cs b/VisualPinball.Engine/Math/Matrix3D.cs index 8408ac39a..cc624d237 100644 --- a/VisualPinball.Engine/Math/Matrix3D.cs +++ b/VisualPinball.Engine/Math/Matrix3D.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Rect3D.cs b/VisualPinball.Engine/Math/Rect3D.cs index 3ad016a28..067a2cbea 100644 --- a/VisualPinball.Engine/Math/Rect3D.cs +++ b/VisualPinball.Engine/Math/Rect3D.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/RenderVertex.cs b/VisualPinball.Engine/Math/RenderVertex.cs index 79f06cd11..f90551c74 100644 --- a/VisualPinball.Engine/Math/RenderVertex.cs +++ b/VisualPinball.Engine/Math/RenderVertex.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/SplineVertex.cs b/VisualPinball.Engine/Math/SplineVertex.cs index 293d9024e..e703c03d5 100644 --- a/VisualPinball.Engine/Math/SplineVertex.cs +++ b/VisualPinball.Engine/Math/SplineVertex.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Vertex2D.cs b/VisualPinball.Engine/Math/Vertex2D.cs index 22fab09cc..e45742a7a 100644 --- a/VisualPinball.Engine/Math/Vertex2D.cs +++ b/VisualPinball.Engine/Math/Vertex2D.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Vertex3D.cs b/VisualPinball.Engine/Math/Vertex3D.cs index bbcf6467c..ed01e5abe 100644 --- a/VisualPinball.Engine/Math/Vertex3D.cs +++ b/VisualPinball.Engine/Math/Vertex3D.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/Math/Vertex3DNoTex2.cs b/VisualPinball.Engine/Math/Vertex3DNoTex2.cs index 6c6a5dd3f..0ec8f601f 100644 --- a/VisualPinball.Engine/Math/Vertex3DNoTex2.cs +++ b/VisualPinball.Engine/Math/Vertex3DNoTex2.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/BinaryData.cs b/VisualPinball.Engine/VPT/BinaryData.cs index 8c02d13ee..bb090334f 100644 --- a/VisualPinball.Engine/VPT/BinaryData.cs +++ b/VisualPinball.Engine/VPT/BinaryData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Bitmap.cs b/VisualPinball.Engine/VPT/Bitmap.cs index 520a7bcda..bc983bc66 100644 --- a/VisualPinball.Engine/VPT/Bitmap.cs +++ b/VisualPinball.Engine/VPT/Bitmap.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Bumper/Bumper.cs b/VisualPinball.Engine/VPT/Bumper/Bumper.cs index 10848819f..fc10b7271 100644 --- a/VisualPinball.Engine/VPT/Bumper/Bumper.cs +++ b/VisualPinball.Engine/VPT/Bumper/Bumper.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Bumper/BumperData.cs b/VisualPinball.Engine/VPT/Bumper/BumperData.cs index f5c7ece72..ebdd94d8b 100644 --- a/VisualPinball.Engine/VPT/Bumper/BumperData.cs +++ b/VisualPinball.Engine/VPT/Bumper/BumperData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Bumper/BumperMeshGenerator.cs b/VisualPinball.Engine/VPT/Bumper/BumperMeshGenerator.cs index bc758974e..a15ab1be4 100644 --- a/VisualPinball.Engine/VPT/Bumper/BumperMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Bumper/BumperMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Collection/Collection.cs b/VisualPinball.Engine/VPT/Collection/Collection.cs index 936ed4835..8be9a2483 100644 --- a/VisualPinball.Engine/VPT/Collection/Collection.cs +++ b/VisualPinball.Engine/VPT/Collection/Collection.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Collection/CollectionData.cs b/VisualPinball.Engine/VPT/Collection/CollectionData.cs index 6ac0b4d8b..1802a3eb7 100644 --- a/VisualPinball.Engine/VPT/Collection/CollectionData.cs +++ b/VisualPinball.Engine/VPT/Collection/CollectionData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Decal/Decal.cs b/VisualPinball.Engine/VPT/Decal/Decal.cs index 74fb8b749..baee3aac6 100644 --- a/VisualPinball.Engine/VPT/Decal/Decal.cs +++ b/VisualPinball.Engine/VPT/Decal/Decal.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Decal/DecalData.cs b/VisualPinball.Engine/VPT/Decal/DecalData.cs index d2e4ea006..74beacb21 100644 --- a/VisualPinball.Engine/VPT/Decal/DecalData.cs +++ b/VisualPinball.Engine/VPT/Decal/DecalData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/DispReel/DispReel.cs b/VisualPinball.Engine/VPT/DispReel/DispReel.cs index 206ce7a6c..45fd35292 100644 --- a/VisualPinball.Engine/VPT/DispReel/DispReel.cs +++ b/VisualPinball.Engine/VPT/DispReel/DispReel.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/DispReel/DispReelData.cs b/VisualPinball.Engine/VPT/DispReel/DispReelData.cs index b1f27917b..9caba1ae1 100644 --- a/VisualPinball.Engine/VPT/DispReel/DispReelData.cs +++ b/VisualPinball.Engine/VPT/DispReel/DispReelData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Enums.cs b/VisualPinball.Engine/VPT/Enums.cs index 514af8332..de49e49e1 100644 --- a/VisualPinball.Engine/VPT/Enums.cs +++ b/VisualPinball.Engine/VPT/Enums.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flasher/Flasher.cs b/VisualPinball.Engine/VPT/Flasher/Flasher.cs index 44bcb179e..8a524b2ac 100644 --- a/VisualPinball.Engine/VPT/Flasher/Flasher.cs +++ b/VisualPinball.Engine/VPT/Flasher/Flasher.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flasher/FlasherData.cs b/VisualPinball.Engine/VPT/Flasher/FlasherData.cs index 4a073934f..84e76b46f 100644 --- a/VisualPinball.Engine/VPT/Flasher/FlasherData.cs +++ b/VisualPinball.Engine/VPT/Flasher/FlasherData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flipper/Flipper.cs b/VisualPinball.Engine/VPT/Flipper/Flipper.cs index 2f9ceb61e..4f6da5387 100644 --- a/VisualPinball.Engine/VPT/Flipper/Flipper.cs +++ b/VisualPinball.Engine/VPT/Flipper/Flipper.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flipper/FlipperData.cs b/VisualPinball.Engine/VPT/Flipper/FlipperData.cs index 6c2185401..2c9bab996 100644 --- a/VisualPinball.Engine/VPT/Flipper/FlipperData.cs +++ b/VisualPinball.Engine/VPT/Flipper/FlipperData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flipper/FlipperMeshGenerator.cs b/VisualPinball.Engine/VPT/Flipper/FlipperMeshGenerator.cs index c5e2bbc80..fcd19dc3b 100644 --- a/VisualPinball.Engine/VPT/Flipper/FlipperMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Flipper/FlipperMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Flipper/IFlipperData.cs b/VisualPinball.Engine/VPT/Flipper/IFlipperData.cs index e6572a096..63d796f99 100644 --- a/VisualPinball.Engine/VPT/Flipper/IFlipperData.cs +++ b/VisualPinball.Engine/VPT/Flipper/IFlipperData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Font.cs b/VisualPinball.Engine/VPT/Font.cs index bdeaaf74c..5a359d917 100644 --- a/VisualPinball.Engine/VPT/Font.cs +++ b/VisualPinball.Engine/VPT/Font.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Gate/Gate.cs b/VisualPinball.Engine/VPT/Gate/Gate.cs index bdbc8bf88..3344cebab 100644 --- a/VisualPinball.Engine/VPT/Gate/Gate.cs +++ b/VisualPinball.Engine/VPT/Gate/Gate.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Gate/GateData.cs b/VisualPinball.Engine/VPT/Gate/GateData.cs index d0a858fe2..b2404059f 100644 --- a/VisualPinball.Engine/VPT/Gate/GateData.cs +++ b/VisualPinball.Engine/VPT/Gate/GateData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Gate/GateMeshGenerator.cs b/VisualPinball.Engine/VPT/Gate/GateMeshGenerator.cs index c67061547..375ca038c 100644 --- a/VisualPinball.Engine/VPT/Gate/GateMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Gate/GateMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Gate/IGateData.cs b/VisualPinball.Engine/VPT/Gate/IGateData.cs index f4f2882cb..f0fa57f77 100644 --- a/VisualPinball.Engine/VPT/Gate/IGateData.cs +++ b/VisualPinball.Engine/VPT/Gate/IGateData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/HitTarget/HitTarget.cs b/VisualPinball.Engine/VPT/HitTarget/HitTarget.cs index f5d13d68a..153b10742 100644 --- a/VisualPinball.Engine/VPT/HitTarget/HitTarget.cs +++ b/VisualPinball.Engine/VPT/HitTarget/HitTarget.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/HitTarget/HitTargetData.cs b/VisualPinball.Engine/VPT/HitTarget/HitTargetData.cs index 8488f89bd..0d9850969 100644 --- a/VisualPinball.Engine/VPT/HitTarget/HitTargetData.cs +++ b/VisualPinball.Engine/VPT/HitTarget/HitTargetData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/HitTarget/HitTargetMeshGenerator.cs b/VisualPinball.Engine/VPT/HitTarget/HitTargetMeshGenerator.cs index b02c17b76..19c30d4a7 100644 --- a/VisualPinball.Engine/VPT/HitTarget/HitTargetMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/HitTarget/HitTargetMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/HitTarget/ITargetData.cs b/VisualPinball.Engine/VPT/HitTarget/ITargetData.cs index e673e2c6d..8132bef20 100644 --- a/VisualPinball.Engine/VPT/HitTarget/ITargetData.cs +++ b/VisualPinball.Engine/VPT/HitTarget/ITargetData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/IItem.cs b/VisualPinball.Engine/VPT/IItem.cs index 07dbd59df..91a167abf 100644 --- a/VisualPinball.Engine/VPT/IItem.cs +++ b/VisualPinball.Engine/VPT/IItem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/IMeshGenerator.cs b/VisualPinball.Engine/VPT/IMeshGenerator.cs index 0f8e7c3fd..3b043c3a9 100644 --- a/VisualPinball.Engine/VPT/IMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/IMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Item.cs b/VisualPinball.Engine/VPT/Item.cs index 012419e02..675b3024e 100644 --- a/VisualPinball.Engine/VPT/Item.cs +++ b/VisualPinball.Engine/VPT/Item.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/ItemData.cs b/VisualPinball.Engine/VPT/ItemData.cs index 014a17e6f..f7d987d35 100644 --- a/VisualPinball.Engine/VPT/ItemData.cs +++ b/VisualPinball.Engine/VPT/ItemData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/ItemState.cs b/VisualPinball.Engine/VPT/ItemState.cs index 0f9442913..2c6da8228 100644 --- a/VisualPinball.Engine/VPT/ItemState.cs +++ b/VisualPinball.Engine/VPT/ItemState.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/ItemType.cs b/VisualPinball.Engine/VPT/ItemType.cs index b14250538..d6dfaa4ea 100644 --- a/VisualPinball.Engine/VPT/ItemType.cs +++ b/VisualPinball.Engine/VPT/ItemType.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Kicker/Kicker.cs b/VisualPinball.Engine/VPT/Kicker/Kicker.cs index c00ceae42..8d08cba48 100644 --- a/VisualPinball.Engine/VPT/Kicker/Kicker.cs +++ b/VisualPinball.Engine/VPT/Kicker/Kicker.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Kicker/KickerData.cs b/VisualPinball.Engine/VPT/Kicker/KickerData.cs index 6b33ea3f8..8ae7e7fc0 100644 --- a/VisualPinball.Engine/VPT/Kicker/KickerData.cs +++ b/VisualPinball.Engine/VPT/Kicker/KickerData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Kicker/KickerHitMesh.cs b/VisualPinball.Engine/VPT/Kicker/KickerHitMesh.cs index 353130576..69d0f1ee8 100644 --- a/VisualPinball.Engine/VPT/Kicker/KickerHitMesh.cs +++ b/VisualPinball.Engine/VPT/Kicker/KickerHitMesh.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Kicker/KickerMeshGenerator.cs b/VisualPinball.Engine/VPT/Kicker/KickerMeshGenerator.cs index 7f1486bc8..112267216 100644 --- a/VisualPinball.Engine/VPT/Kicker/KickerMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Kicker/KickerMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Light/Light.cs b/VisualPinball.Engine/VPT/Light/Light.cs index 3f99e20b2..eafcb0562 100644 --- a/VisualPinball.Engine/VPT/Light/Light.cs +++ b/VisualPinball.Engine/VPT/Light/Light.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Light/LightData.cs b/VisualPinball.Engine/VPT/Light/LightData.cs index f1fe84594..e1b8310c8 100644 --- a/VisualPinball.Engine/VPT/Light/LightData.cs +++ b/VisualPinball.Engine/VPT/Light/LightData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Light/LightMeshGenerator.cs b/VisualPinball.Engine/VPT/Light/LightMeshGenerator.cs index d7d0a7ffe..2290f8292 100644 --- a/VisualPinball.Engine/VPT/Light/LightMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Light/LightMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/LightSeq/LightSeq.cs b/VisualPinball.Engine/VPT/LightSeq/LightSeq.cs index a76dce10b..8bd4c3611 100644 --- a/VisualPinball.Engine/VPT/LightSeq/LightSeq.cs +++ b/VisualPinball.Engine/VPT/LightSeq/LightSeq.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/LightSeq/LightSeqData.cs b/VisualPinball.Engine/VPT/LightSeq/LightSeqData.cs index 3c5a9b8c1..f10d26ca9 100644 --- a/VisualPinball.Engine/VPT/LightSeq/LightSeqData.cs +++ b/VisualPinball.Engine/VPT/LightSeq/LightSeqData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Material.cs b/VisualPinball.Engine/VPT/Material.cs index 83c217452..1e0e2447f 100644 --- a/VisualPinball.Engine/VPT/Material.cs +++ b/VisualPinball.Engine/VPT/Material.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MaterialData.cs b/VisualPinball.Engine/VPT/MaterialData.cs index 302e64ebb..b33d2db7a 100644 --- a/VisualPinball.Engine/VPT/MaterialData.cs +++ b/VisualPinball.Engine/VPT/MaterialData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MaterialLoader.cs b/VisualPinball.Engine/VPT/MaterialLoader.cs index 3810baa88..229a0d4dd 100644 --- a/VisualPinball.Engine/VPT/MaterialLoader.cs +++ b/VisualPinball.Engine/VPT/MaterialLoader.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Mesh.cs b/VisualPinball.Engine/VPT/Mesh.cs index 193c69b36..e72c5e082 100644 --- a/VisualPinball.Engine/VPT/Mesh.cs +++ b/VisualPinball.Engine/VPT/Mesh.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MeshGenerator.cs b/VisualPinball.Engine/VPT/MeshGenerator.cs index 485242ee0..d2218b8b9 100644 --- a/VisualPinball.Engine/VPT/MeshGenerator.cs +++ b/VisualPinball.Engine/VPT/MeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MetalWireGuide/IMetalWireGuideData.cs b/VisualPinball.Engine/VPT/MetalWireGuide/IMetalWireGuideData.cs index eb499542d..aa59b73d2 100644 --- a/VisualPinball.Engine/VPT/MetalWireGuide/IMetalWireGuideData.cs +++ b/VisualPinball.Engine/VPT/MetalWireGuide/IMetalWireGuideData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuide.cs b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuide.cs index 825fb987f..98910db4b 100644 --- a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuide.cs +++ b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuide.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideData.cs b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideData.cs index 2d5933502..1f1aa54a6 100644 --- a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideData.cs +++ b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideMeshGenerator.cs b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideMeshGenerator.cs index 6580f35c0..4d0b54f20 100644 --- a/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/MetalWireGuide/MetalWireGuideMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/PbrMaterial.cs b/VisualPinball.Engine/VPT/PbrMaterial.cs index a55350b6f..0ec09a701 100644 --- a/VisualPinball.Engine/VPT/PbrMaterial.cs +++ b/VisualPinball.Engine/VPT/PbrMaterial.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Plunger/Plunger.cs b/VisualPinball.Engine/VPT/Plunger/Plunger.cs index 58870ed09..89fa7b4d0 100644 --- a/VisualPinball.Engine/VPT/Plunger/Plunger.cs +++ b/VisualPinball.Engine/VPT/Plunger/Plunger.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Plunger/PlungerCoord.cs b/VisualPinball.Engine/VPT/Plunger/PlungerCoord.cs index a30b889f6..ae45d7c33 100644 --- a/VisualPinball.Engine/VPT/Plunger/PlungerCoord.cs +++ b/VisualPinball.Engine/VPT/Plunger/PlungerCoord.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Plunger/PlungerData.cs b/VisualPinball.Engine/VPT/Plunger/PlungerData.cs index fc58d0bb9..7f6374a05 100644 --- a/VisualPinball.Engine/VPT/Plunger/PlungerData.cs +++ b/VisualPinball.Engine/VPT/Plunger/PlungerData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Plunger/PlungerDesc.cs b/VisualPinball.Engine/VPT/Plunger/PlungerDesc.cs index d48bddba9..ec8b342dc 100644 --- a/VisualPinball.Engine/VPT/Plunger/PlungerDesc.cs +++ b/VisualPinball.Engine/VPT/Plunger/PlungerDesc.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Plunger/PlungerMeshGenerator.cs b/VisualPinball.Engine/VPT/Plunger/PlungerMeshGenerator.cs index 6c9178c12..cffa1815e 100644 --- a/VisualPinball.Engine/VPT/Plunger/PlungerMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Plunger/PlungerMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Primitive/Primitive.cs b/VisualPinball.Engine/VPT/Primitive/Primitive.cs index 2638a5afb..6c8906628 100644 --- a/VisualPinball.Engine/VPT/Primitive/Primitive.cs +++ b/VisualPinball.Engine/VPT/Primitive/Primitive.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Primitive/PrimitiveData.cs b/VisualPinball.Engine/VPT/Primitive/PrimitiveData.cs index 5c6f5d159..692036a10 100644 --- a/VisualPinball.Engine/VPT/Primitive/PrimitiveData.cs +++ b/VisualPinball.Engine/VPT/Primitive/PrimitiveData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Primitive/PrimitiveMeshGenerator.cs b/VisualPinball.Engine/VPT/Primitive/PrimitiveMeshGenerator.cs index beb642699..6892d5ac8 100644 --- a/VisualPinball.Engine/VPT/Primitive/PrimitiveMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Primitive/PrimitiveMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Ramp/IRampData.cs b/VisualPinball.Engine/VPT/Ramp/IRampData.cs index ec3d99350..e6d1967ef 100644 --- a/VisualPinball.Engine/VPT/Ramp/IRampData.cs +++ b/VisualPinball.Engine/VPT/Ramp/IRampData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Ramp/Ramp.cs b/VisualPinball.Engine/VPT/Ramp/Ramp.cs index af3f12acd..34e581620 100644 --- a/VisualPinball.Engine/VPT/Ramp/Ramp.cs +++ b/VisualPinball.Engine/VPT/Ramp/Ramp.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Ramp/RampData.cs b/VisualPinball.Engine/VPT/Ramp/RampData.cs index f9457231a..063408501 100644 --- a/VisualPinball.Engine/VPT/Ramp/RampData.cs +++ b/VisualPinball.Engine/VPT/Ramp/RampData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Ramp/RampMeshGenerator.cs b/VisualPinball.Engine/VPT/Ramp/RampMeshGenerator.cs index 69c36b613..b3e24a9a8 100644 --- a/VisualPinball.Engine/VPT/Ramp/RampMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Ramp/RampMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Rubber/IRubberData.cs b/VisualPinball.Engine/VPT/Rubber/IRubberData.cs index 07a48a5ff..de2104eab 100644 --- a/VisualPinball.Engine/VPT/Rubber/IRubberData.cs +++ b/VisualPinball.Engine/VPT/Rubber/IRubberData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Rubber/Rubber.cs b/VisualPinball.Engine/VPT/Rubber/Rubber.cs index dba3ccb43..0acbbd441 100644 --- a/VisualPinball.Engine/VPT/Rubber/Rubber.cs +++ b/VisualPinball.Engine/VPT/Rubber/Rubber.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Rubber/RubberData.cs b/VisualPinball.Engine/VPT/Rubber/RubberData.cs index 39391c7f1..822912887 100644 --- a/VisualPinball.Engine/VPT/Rubber/RubberData.cs +++ b/VisualPinball.Engine/VPT/Rubber/RubberData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Rubber/RubberMeshGenerator.cs b/VisualPinball.Engine/VPT/Rubber/RubberMeshGenerator.cs index af0c31f80..59e24e81d 100644 --- a/VisualPinball.Engine/VPT/Rubber/RubberMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Rubber/RubberMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Sound/Sound.cs b/VisualPinball.Engine/VPT/Sound/Sound.cs index ee9c341a5..5425186a3 100644 --- a/VisualPinball.Engine/VPT/Sound/Sound.cs +++ b/VisualPinball.Engine/VPT/Sound/Sound.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Sound/SoundData.cs b/VisualPinball.Engine/VPT/Sound/SoundData.cs index f4efc0ef3..80109ca75 100644 --- a/VisualPinball.Engine/VPT/Sound/SoundData.cs +++ b/VisualPinball.Engine/VPT/Sound/SoundData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Sound/WaveFormat.cs b/VisualPinball.Engine/VPT/Sound/WaveFormat.cs index 12a7baf51..715509090 100644 --- a/VisualPinball.Engine/VPT/Sound/WaveFormat.cs +++ b/VisualPinball.Engine/VPT/Sound/WaveFormat.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Spinner/Spinner.cs b/VisualPinball.Engine/VPT/Spinner/Spinner.cs index fdc9bebfc..99b6557fe 100644 --- a/VisualPinball.Engine/VPT/Spinner/Spinner.cs +++ b/VisualPinball.Engine/VPT/Spinner/Spinner.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Spinner/SpinnerData.cs b/VisualPinball.Engine/VPT/Spinner/SpinnerData.cs index 1a1492fd7..e14e95c22 100644 --- a/VisualPinball.Engine/VPT/Spinner/SpinnerData.cs +++ b/VisualPinball.Engine/VPT/Spinner/SpinnerData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Spinner/SpinnerMeshGenerator.cs b/VisualPinball.Engine/VPT/Spinner/SpinnerMeshGenerator.cs index 74a87e4e3..76146fea8 100644 --- a/VisualPinball.Engine/VPT/Spinner/SpinnerMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Spinner/SpinnerMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Surface/ISurfaceData.cs b/VisualPinball.Engine/VPT/Surface/ISurfaceData.cs index cfb3ec0c8..773de2fbe 100644 --- a/VisualPinball.Engine/VPT/Surface/ISurfaceData.cs +++ b/VisualPinball.Engine/VPT/Surface/ISurfaceData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Surface/Surface.cs b/VisualPinball.Engine/VPT/Surface/Surface.cs index 5f1bf6c9d..5b623ad17 100644 --- a/VisualPinball.Engine/VPT/Surface/Surface.cs +++ b/VisualPinball.Engine/VPT/Surface/Surface.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Surface/SurfaceData.cs b/VisualPinball.Engine/VPT/Surface/SurfaceData.cs index d933e1069..95c5b2ba2 100644 --- a/VisualPinball.Engine/VPT/Surface/SurfaceData.cs +++ b/VisualPinball.Engine/VPT/Surface/SurfaceData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Surface/SurfaceMeshGenerator.cs b/VisualPinball.Engine/VPT/Surface/SurfaceMeshGenerator.cs index f31677d54..4056b87b9 100644 --- a/VisualPinball.Engine/VPT/Surface/SurfaceMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Surface/SurfaceMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/CustomInfoTags.cs b/VisualPinball.Engine/VPT/Table/CustomInfoTags.cs index 3dcab61ad..375a8ef19 100644 --- a/VisualPinball.Engine/VPT/Table/CustomInfoTags.cs +++ b/VisualPinball.Engine/VPT/Table/CustomInfoTags.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/FileTableContainer.cs b/VisualPinball.Engine/VPT/Table/FileTableContainer.cs index 0cac585f7..70c29d2f0 100644 --- a/VisualPinball.Engine/VPT/Table/FileTableContainer.cs +++ b/VisualPinball.Engine/VPT/Table/FileTableContainer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/HashWriter.cs b/VisualPinball.Engine/VPT/Table/HashWriter.cs index 155a0e97d..609422fff 100644 --- a/VisualPinball.Engine/VPT/Table/HashWriter.cs +++ b/VisualPinball.Engine/VPT/Table/HashWriter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/Table.cs b/VisualPinball.Engine/VPT/Table/Table.cs index 6ce61352e..e05003ade 100644 --- a/VisualPinball.Engine/VPT/Table/Table.cs +++ b/VisualPinball.Engine/VPT/Table/Table.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableBuilder.cs b/VisualPinball.Engine/VPT/Table/TableBuilder.cs index 8179ba427..69b209ad0 100644 --- a/VisualPinball.Engine/VPT/Table/TableBuilder.cs +++ b/VisualPinball.Engine/VPT/Table/TableBuilder.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableContainer.cs b/VisualPinball.Engine/VPT/Table/TableContainer.cs index a5da291f1..d8497d93d 100644 --- a/VisualPinball.Engine/VPT/Table/TableContainer.cs +++ b/VisualPinball.Engine/VPT/Table/TableContainer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableData.cs b/VisualPinball.Engine/VPT/Table/TableData.cs index ef2192f11..3af418d7d 100644 --- a/VisualPinball.Engine/VPT/Table/TableData.cs +++ b/VisualPinball.Engine/VPT/Table/TableData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableLoader.cs b/VisualPinball.Engine/VPT/Table/TableLoader.cs index 20dabbea4..bacf2354a 100644 --- a/VisualPinball.Engine/VPT/Table/TableLoader.cs +++ b/VisualPinball.Engine/VPT/Table/TableLoader.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableMeshGenerator.cs b/VisualPinball.Engine/VPT/Table/TableMeshGenerator.cs index 98ccb5ae4..6a80a2953 100644 --- a/VisualPinball.Engine/VPT/Table/TableMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Table/TableMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Table/TableWriter.cs b/VisualPinball.Engine/VPT/Table/TableWriter.cs index 00be4162f..19cbbda36 100644 --- a/VisualPinball.Engine/VPT/Table/TableWriter.cs +++ b/VisualPinball.Engine/VPT/Table/TableWriter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/TextBox/TextBox.cs b/VisualPinball.Engine/VPT/TextBox/TextBox.cs index 54b31a968..e87126d33 100644 --- a/VisualPinball.Engine/VPT/TextBox/TextBox.cs +++ b/VisualPinball.Engine/VPT/TextBox/TextBox.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/TextBox/TextBoxData.cs b/VisualPinball.Engine/VPT/TextBox/TextBoxData.cs index b26b7968b..6d940a5f0 100644 --- a/VisualPinball.Engine/VPT/TextBox/TextBoxData.cs +++ b/VisualPinball.Engine/VPT/TextBox/TextBoxData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Texture.cs b/VisualPinball.Engine/VPT/Texture.cs index 6065948c2..8a245230a 100644 --- a/VisualPinball.Engine/VPT/Texture.cs +++ b/VisualPinball.Engine/VPT/Texture.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/TextureData.cs b/VisualPinball.Engine/VPT/TextureData.cs index 8c769b5da..b1dfcfa1f 100644 --- a/VisualPinball.Engine/VPT/TextureData.cs +++ b/VisualPinball.Engine/VPT/TextureData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Timer/Timer.cs b/VisualPinball.Engine/VPT/Timer/Timer.cs index 5621bb670..93cc6bb9e 100644 --- a/VisualPinball.Engine/VPT/Timer/Timer.cs +++ b/VisualPinball.Engine/VPT/Timer/Timer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Timer/TimerData.cs b/VisualPinball.Engine/VPT/Timer/TimerData.cs index 3b492ae2e..58b8369fd 100644 --- a/VisualPinball.Engine/VPT/Timer/TimerData.cs +++ b/VisualPinball.Engine/VPT/Timer/TimerData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Timer/TimerHit.cs b/VisualPinball.Engine/VPT/Timer/TimerHit.cs index 3861b401c..bec4d5761 100644 --- a/VisualPinball.Engine/VPT/Timer/TimerHit.cs +++ b/VisualPinball.Engine/VPT/Timer/TimerHit.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Timer/TimerOnOff.cs b/VisualPinball.Engine/VPT/Timer/TimerOnOff.cs index 252d49a8e..c34ac7352 100644 --- a/VisualPinball.Engine/VPT/Timer/TimerOnOff.cs +++ b/VisualPinball.Engine/VPT/Timer/TimerOnOff.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Trigger/Trigger.cs b/VisualPinball.Engine/VPT/Trigger/Trigger.cs index 7a3ae19a6..4783f4fab 100644 --- a/VisualPinball.Engine/VPT/Trigger/Trigger.cs +++ b/VisualPinball.Engine/VPT/Trigger/Trigger.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Trigger/TriggerData.cs b/VisualPinball.Engine/VPT/Trigger/TriggerData.cs index 6f7217004..8168f28f7 100644 --- a/VisualPinball.Engine/VPT/Trigger/TriggerData.cs +++ b/VisualPinball.Engine/VPT/Trigger/TriggerData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Trigger/TriggerMeshGenerator.cs b/VisualPinball.Engine/VPT/Trigger/TriggerMeshGenerator.cs index c0ad3336d..a44fa90b8 100644 --- a/VisualPinball.Engine/VPT/Trigger/TriggerMeshGenerator.cs +++ b/VisualPinball.Engine/VPT/Trigger/TriggerMeshGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Trough/Trough.cs b/VisualPinball.Engine/VPT/Trough/Trough.cs index e4a45d698..00965a4bc 100644 --- a/VisualPinball.Engine/VPT/Trough/Trough.cs +++ b/VisualPinball.Engine/VPT/Trough/Trough.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VPT/Trough/TroughData.cs b/VisualPinball.Engine/VPT/Trough/TroughData.cs index cd26c6481..ef6854700 100644 --- a/VisualPinball.Engine/VPT/Trough/TroughData.cs +++ b/VisualPinball.Engine/VPT/Trough/TroughData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Engine/VisualPinball.Engine.csproj b/VisualPinball.Engine/VisualPinball.Engine.csproj index 14209754f..4d2027c18 100644 --- a/VisualPinball.Engine/VisualPinball.Engine.csproj +++ b/VisualPinball.Engine/VisualPinball.Engine.csproj @@ -6,7 +6,7 @@ VisualPinball.Engine The core of Visual Pinball ported to .NET freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Resources/Meshes/BallMesh.cs b/VisualPinball.Resources/Meshes/BallMesh.cs index a34245683..14bcecc84 100644 --- a/VisualPinball.Resources/Meshes/BallMesh.cs +++ b/VisualPinball.Resources/Meshes/BallMesh.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/Bulb.cs b/VisualPinball.Resources/Meshes/Bulb.cs index 90af8d40c..e61cebdf1 100644 --- a/VisualPinball.Resources/Meshes/Bulb.cs +++ b/VisualPinball.Resources/Meshes/Bulb.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/BulbSocket.cs b/VisualPinball.Resources/Meshes/BulbSocket.cs index b8f3e7159..0c527224c 100644 --- a/VisualPinball.Resources/Meshes/BulbSocket.cs +++ b/VisualPinball.Resources/Meshes/BulbSocket.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/BumperBase.cs b/VisualPinball.Resources/Meshes/BumperBase.cs index 8c03934a8..50381bad7 100644 --- a/VisualPinball.Resources/Meshes/BumperBase.cs +++ b/VisualPinball.Resources/Meshes/BumperBase.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/BumperCap.cs b/VisualPinball.Resources/Meshes/BumperCap.cs index 9874aefdf..25f6be291 100644 --- a/VisualPinball.Resources/Meshes/BumperCap.cs +++ b/VisualPinball.Resources/Meshes/BumperCap.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/BumperRing.cs b/VisualPinball.Resources/Meshes/BumperRing.cs index 0e84e4d75..49a5e284b 100644 --- a/VisualPinball.Resources/Meshes/BumperRing.cs +++ b/VisualPinball.Resources/Meshes/BumperRing.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/BumperSocket.cs b/VisualPinball.Resources/Meshes/BumperSocket.cs index 43b9c9c68..46f27e2cc 100644 --- a/VisualPinball.Resources/Meshes/BumperSocket.cs +++ b/VisualPinball.Resources/Meshes/BumperSocket.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/DropTargetT2.cs b/VisualPinball.Resources/Meshes/DropTargetT2.cs index bc8c7dfae..cc96a8939 100644 --- a/VisualPinball.Resources/Meshes/DropTargetT2.cs +++ b/VisualPinball.Resources/Meshes/DropTargetT2.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/DropTargetT3.cs b/VisualPinball.Resources/Meshes/DropTargetT3.cs index cf9b62f06..30519016e 100644 --- a/VisualPinball.Resources/Meshes/DropTargetT3.cs +++ b/VisualPinball.Resources/Meshes/DropTargetT3.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/DropTargetT4.cs b/VisualPinball.Resources/Meshes/DropTargetT4.cs index 12ae2714b..6a6d5ecec 100644 --- a/VisualPinball.Resources/Meshes/DropTargetT4.cs +++ b/VisualPinball.Resources/Meshes/DropTargetT4.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/GateBracket.cs b/VisualPinball.Resources/Meshes/GateBracket.cs index 3cb0f0f7d..f194cbb1c 100644 --- a/VisualPinball.Resources/Meshes/GateBracket.cs +++ b/VisualPinball.Resources/Meshes/GateBracket.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/GateLongPlate.cs b/VisualPinball.Resources/Meshes/GateLongPlate.cs index 9bc5883e8..5afcb478b 100644 --- a/VisualPinball.Resources/Meshes/GateLongPlate.cs +++ b/VisualPinball.Resources/Meshes/GateLongPlate.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/GatePlate.cs b/VisualPinball.Resources/Meshes/GatePlate.cs index 981ed44d4..7399e272f 100644 --- a/VisualPinball.Resources/Meshes/GatePlate.cs +++ b/VisualPinball.Resources/Meshes/GatePlate.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/GateWire.cs b/VisualPinball.Resources/Meshes/GateWire.cs index 245e1b972..f2f387214 100644 --- a/VisualPinball.Resources/Meshes/GateWire.cs +++ b/VisualPinball.Resources/Meshes/GateWire.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/GateWireRectangle.cs b/VisualPinball.Resources/Meshes/GateWireRectangle.cs index 149deb662..b021033e1 100644 --- a/VisualPinball.Resources/Meshes/GateWireRectangle.cs +++ b/VisualPinball.Resources/Meshes/GateWireRectangle.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetFatRectangle.cs b/VisualPinball.Resources/Meshes/HitTargetFatRectangle.cs index f32496a4f..8c0773fad 100644 --- a/VisualPinball.Resources/Meshes/HitTargetFatRectangle.cs +++ b/VisualPinball.Resources/Meshes/HitTargetFatRectangle.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetFatSquare.cs b/VisualPinball.Resources/Meshes/HitTargetFatSquare.cs index 8299d2e28..be82714e5 100644 --- a/VisualPinball.Resources/Meshes/HitTargetFatSquare.cs +++ b/VisualPinball.Resources/Meshes/HitTargetFatSquare.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetRectangle.cs b/VisualPinball.Resources/Meshes/HitTargetRectangle.cs index 07d3bfa31..595f3e467 100644 --- a/VisualPinball.Resources/Meshes/HitTargetRectangle.cs +++ b/VisualPinball.Resources/Meshes/HitTargetRectangle.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetRound.cs b/VisualPinball.Resources/Meshes/HitTargetRound.cs index 1c3aea041..f508b0c65 100644 --- a/VisualPinball.Resources/Meshes/HitTargetRound.cs +++ b/VisualPinball.Resources/Meshes/HitTargetRound.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetT1Slim.cs b/VisualPinball.Resources/Meshes/HitTargetT1Slim.cs index f15faff19..c702b55d0 100644 --- a/VisualPinball.Resources/Meshes/HitTargetT1Slim.cs +++ b/VisualPinball.Resources/Meshes/HitTargetT1Slim.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/HitTargetT2Slim.cs b/VisualPinball.Resources/Meshes/HitTargetT2Slim.cs index f02ab9535..0ed3a449f 100644 --- a/VisualPinball.Resources/Meshes/HitTargetT2Slim.cs +++ b/VisualPinball.Resources/Meshes/HitTargetT2Slim.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerCup.cs b/VisualPinball.Resources/Meshes/KickerCup.cs index d04e2eb68..1b68582d2 100644 --- a/VisualPinball.Resources/Meshes/KickerCup.cs +++ b/VisualPinball.Resources/Meshes/KickerCup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerGottlieb.cs b/VisualPinball.Resources/Meshes/KickerGottlieb.cs index 567ecbae9..c8f703658 100644 --- a/VisualPinball.Resources/Meshes/KickerGottlieb.cs +++ b/VisualPinball.Resources/Meshes/KickerGottlieb.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerHole.cs b/VisualPinball.Resources/Meshes/KickerHole.cs index c143db345..55eea639b 100644 --- a/VisualPinball.Resources/Meshes/KickerHole.cs +++ b/VisualPinball.Resources/Meshes/KickerHole.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerPlate.cs b/VisualPinball.Resources/Meshes/KickerPlate.cs index 91903234b..35dd7ed4f 100644 --- a/VisualPinball.Resources/Meshes/KickerPlate.cs +++ b/VisualPinball.Resources/Meshes/KickerPlate.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerSimpleHole.cs b/VisualPinball.Resources/Meshes/KickerSimpleHole.cs index 6b7e34e1f..e8a203ad7 100644 --- a/VisualPinball.Resources/Meshes/KickerSimpleHole.cs +++ b/VisualPinball.Resources/Meshes/KickerSimpleHole.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerT1.cs b/VisualPinball.Resources/Meshes/KickerT1.cs index e54719c6c..e76a0ffb9 100644 --- a/VisualPinball.Resources/Meshes/KickerT1.cs +++ b/VisualPinball.Resources/Meshes/KickerT1.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/KickerWilliams.cs b/VisualPinball.Resources/Meshes/KickerWilliams.cs index b4f76912c..0ac60fa2c 100644 --- a/VisualPinball.Resources/Meshes/KickerWilliams.cs +++ b/VisualPinball.Resources/Meshes/KickerWilliams.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/SpinnerBracket.cs b/VisualPinball.Resources/Meshes/SpinnerBracket.cs index 39f11bd5a..438c51185 100644 --- a/VisualPinball.Resources/Meshes/SpinnerBracket.cs +++ b/VisualPinball.Resources/Meshes/SpinnerBracket.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/SpinnerPlate.cs b/VisualPinball.Resources/Meshes/SpinnerPlate.cs index 3a8f46c14..9701d6f2c 100644 --- a/VisualPinball.Resources/Meshes/SpinnerPlate.cs +++ b/VisualPinball.Resources/Meshes/SpinnerPlate.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/TriggerButton.cs b/VisualPinball.Resources/Meshes/TriggerButton.cs index 6673a95ea..9f3ae348b 100644 --- a/VisualPinball.Resources/Meshes/TriggerButton.cs +++ b/VisualPinball.Resources/Meshes/TriggerButton.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/TriggerSimple.cs b/VisualPinball.Resources/Meshes/TriggerSimple.cs index d6a7fbd53..a65e16efe 100644 --- a/VisualPinball.Resources/Meshes/TriggerSimple.cs +++ b/VisualPinball.Resources/Meshes/TriggerSimple.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/TriggerStar.cs b/VisualPinball.Resources/Meshes/TriggerStar.cs index 0c7955312..ec678cf71 100644 --- a/VisualPinball.Resources/Meshes/TriggerStar.cs +++ b/VisualPinball.Resources/Meshes/TriggerStar.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Meshes/TriggerWireD.cs b/VisualPinball.Resources/Meshes/TriggerWireD.cs index a52cf6425..03a4007db 100644 --- a/VisualPinball.Resources/Meshes/TriggerWireD.cs +++ b/VisualPinball.Resources/Meshes/TriggerWireD.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/Resource.cs b/VisualPinball.Resources/Resource.cs index 3259dfdcc..7213c0faf 100644 --- a/VisualPinball.Resources/Resource.cs +++ b/VisualPinball.Resources/Resource.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Resources/VisualPinball.Resources.csproj b/VisualPinball.Resources/VisualPinball.Resources.csproj index 99eca4375..070c859ed 100644 --- a/VisualPinball.Resources/VisualPinball.Resources.csproj +++ b/VisualPinball.Resources/VisualPinball.Resources.csproj @@ -4,7 +4,7 @@ VisualPinball.Resources Meshes and Textures shipped with Visual Pinball freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser.cs index 65c27b06e..1c42ce0a3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser_Init.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser_Init.cs index 1a4ea467e..a4e5d89c3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser_Init.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetBrowser_Init.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetLibrary.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetLibrary.cs index 09396a88e..cea308f4b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetLibrary.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetLibrary.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQuery.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQuery.cs index b6da888c8..cdc30ae89 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQuery.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQuery.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQueryResult.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQueryResult.cs index a528844b4..f776e953e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQueryResult.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetQueryResult.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs index 96ae5cf9c..1f30c65c3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/Asset.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttribute.cs index 6cb3de4f1..1108f858a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributeElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributeElement.cs index 3dc41fb7d..a9f1a69e7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributeElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributeElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributePropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributePropertyDrawer.cs index 7447401e0..c2f6125cc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributePropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetAttributePropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetCategory.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetCategory.cs index dce15490c..64ee1e3df 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetCategory.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetCategory.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs index c98efee2e..ded688c71 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetDetails.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetInspector.cs index de644d72c..fb81fc53f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLink.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLink.cs index f0a5d6f0e..13e0768cd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLink.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLink.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkElement.cs index 4bd89b6de..5c5cc67ad 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkPropertyDrawer.cs index 29ea55ddb..24fb789a3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetLinkPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombination.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombination.cs index a6a98dcd3..b1ea4d9c6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombination.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombination.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombinationElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombinationElement.cs index e964c35a0..e02a3fb89 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombinationElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialCombinationElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverride.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverride.cs index 4204b51a3..18247e890 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverride.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverride.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverridePropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverridePropertyDrawer.cs index 4983fe4cc..ccab1a958 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverridePropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialOverridePropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariation.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariation.cs index b2f6b95b5..5458829fb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariation.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariation.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationPropertyDrawer.cs index 57aa9010d..674a08874 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationsElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationsElement.cs index 6bd8b250e..fafb423d7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationsElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetMaterialVariationsElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQuality.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQuality.cs index 1f23ab3d2..68b61c4c0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQuality.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQuality.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQualityElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQualityElement.cs index 8b60fa262..5ccca383e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQualityElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetQualityElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTag.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTag.cs index 1332a25b2..2710ee21b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTag.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTag.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagElement.cs index c872a08ef..fa7832d89 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagPropertyDrawer.cs index c1246ef0f..15803766b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/AssetStructure/AssetTagPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/MaterialSlotDropdownElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/MaterialSlotDropdownElement.cs index d2478898f..50c981174 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/MaterialSlotDropdownElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/MaterialSlotDropdownElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs index f28a8f019..0a42912c8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/ObjectDropdownElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PresetDropdownElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PresetDropdownElement.cs index f72c95f5c..4e0ccb01f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PresetDropdownElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PresetDropdownElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PreviewEditorElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PreviewEditorElement.cs index aa06f21d6..e56ad9c3f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PreviewEditorElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/Elements/PreviewEditorElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryAssetElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryAssetElement.cs index cb3d05e8b..20d2001f6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryAssetElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryAssetElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryElement.cs index 51ebf111d..2b07ed4d1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryRenameElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryRenameElement.cs index d5919250c..4d3b2bf61 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryRenameElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryRenameElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs index 015730cd3..25238a1d4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryCategoryView.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryDatabase.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryDatabase.cs index 06b464b29..733ff6d00 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryDatabase.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryDatabase.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryQuery.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryQuery.cs index 6449df8e6..6246e8df9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryQuery.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/AssetBrowser/LibraryQuery.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/ObjectReferencePicker.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/ObjectReferencePicker.cs index 5af5823ba..77688baba 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/ObjectReferencePicker.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/ObjectReferencePicker.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/TableSelectorHook.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/TableSelectorHook.cs index 785d7ad56..f04d0e46b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/TableSelectorHook.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Common/TableSelectorHook.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DisplayInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DisplayInspector.cs index 45d9e4c19..f63cb27c6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DisplayInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DisplayInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DotMatrixDisplayInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DotMatrixDisplayInspector.cs index a6baa0d23..ef07afe9b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DotMatrixDisplayInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/DotMatrixDisplayInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelDisplayInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelDisplayInspector.cs index 943ae4b3b..5c4b8458c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelDisplayInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelDisplayInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelInspector.cs index b1ed4639a..49f40f222 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/ScoreReelInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/SegmentDisplayInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/SegmentDisplayInspector.cs index abdda883e..5f73a89c8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/SegmentDisplayInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Display/SegmentDisplayInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/ControlPoint.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/ControlPoint.cs index 0a537b3eb..917992595 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/ControlPoint.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/ControlPoint.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointMenuItems.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointMenuItems.cs index 027be7449..c7c9b2767 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointMenuItems.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointMenuItems.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsHandler.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsHandler.cs index c35867254..d289a91a9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsHandler.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsHandler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsInspectorHelper.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsInspectorHelper.cs index 866a1449f..266fe606b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsInspectorHelper.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsInspectorHelper.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsSceneViewHandler.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsSceneViewHandler.cs index 53d48b6ec..4cb993a70 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsSceneViewHandler.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/DragPointsSceneViewHandler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/FlipAxis.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/FlipAxis.cs index 030bd91ba..d2fab0e9b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/FlipAxis.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/FlipAxis.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/IDragPointsInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/IDragPointsInspector.cs index 6165b086a..106d6fd72 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/IDragPointsInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/DragPoint/IDragPointsInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditor.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditor.cs index 224e715c2..a6a632c86 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditor.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditor.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditorWindow.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditorWindow.cs index eaf45e26f..e56c9c3ee 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditorWindow.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/BaseEditorWindow.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/LockingTableEditorWindow.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/LockingTableEditorWindow.cs index 99609edf9..0af7ae2b3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/LockingTableEditorWindow.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Editors/LockingTableEditorWindow.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraControllerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraControllerInspector.cs index 5eda0a210..a89eb045c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraControllerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraControllerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraSettingInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraSettingInspector.cs index 9db2b9591..195c914f1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraSettingInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/CameraSettingInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/DefaultGamelogicEngineInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/DefaultGamelogicEngineInspector.cs index d73d9ea9a..e74c8b703 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/DefaultGamelogicEngineInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Game/DefaultGamelogicEngineInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/IVpxPrefab.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/IVpxPrefab.cs index 92e8b609e..49700ea4b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/IVpxPrefab.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/IVpxPrefab.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImageConverter.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImageConverter.cs index 85014f004..14b2f9584 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImageConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImageConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportEngine.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportEngine.cs index 2df15b17b..014095123 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportEngine.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportEngine.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizard.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizard.cs index 7fa555bfa..89bc4d47c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizard.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizard.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizardSettings.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizardSettings.cs index 3f9bc0f2e..58609f6a8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizardSettings.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxImportWizardSettings.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxMenuImporter.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxMenuImporter.cs index 788a69963..30b1f7007 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxMenuImporter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxMenuImporter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPlayfieldPrefab.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPlayfieldPrefab.cs index 6e1cfaab0..eab00593a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPlayfieldPrefab.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPlayfieldPrefab.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs index 915179ff7..7788a8b30 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPostProcessor.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPrefab.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPrefab.cs index 928017d7a..e3f20caf8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPrefab.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxPrefab.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxSceneConverter.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxSceneConverter.cs index ddc5cfb17..b55130cc9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxSceneConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Import/VpxSceneConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Input/OnScreenInputSystemButtonInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Input/OnScreenInputSystemButtonInspector.cs index 9adc90802..ed9bab271 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Input/OnScreenInputSystemButtonInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Input/OnScreenInputSystemButtonInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/CollisionSwitchInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/CollisionSwitchInspector.cs index 617fc584e..d8912dd0c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/CollisionSwitchInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/CollisionSwitchInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/DropTargetBankInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/DropTargetBankInspector.cs index df2e72456..11bb6b008 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/DropTargetBankInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/DropTargetBankInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/PlayerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/PlayerInspector.cs index 4ad6ffc7c..ae7b0fd4b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/PlayerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/PlayerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/TroughInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/TroughInspector.cs index b6009d91f..cb13b132f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/TroughInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Inspectors/TroughInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerEditor.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerEditor.cs index b051c8da3..bd983f1ab 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerEditor.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerEditor.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerHandler.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerHandler.cs index 966abaa88..eced137c1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerHandler.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerHandler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeElement.cs index 3cae574fa..201db3705 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeView.cs index ecb71a889..78fc0fe95 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Layers/LayerTreeView.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Logging.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Logging.cs index eb1011642..efc807b03 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Logging.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Logging.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListData.cs index 053ba97c2..f9ef96d6a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListViewItemRenderer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListViewItemRenderer.cs index 7e29591d2..4c53de967 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListViewItemRenderer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilListViewItemRenderer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilManager.cs index 93f595c4a..12990ac8e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Coil/CoilManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionListData.cs index e60a4ffd4..3d39e3d64 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionManager.cs index 4d06e81ea..4e69c0780 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeElement.cs index 3636cf179..8434c1fcf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeView.cs index 67c535812..5ccfede49 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Collections/CollectionTreeView.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IDeviceListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IDeviceListData.cs index 5515e5c43..e287d4a3f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IDeviceListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IDeviceListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IManagerListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IManagerListData.cs index 734d11339..1ee435889 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IManagerListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/IManagerListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageListData.cs index 4571d25ce..9e6f9adc1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageManager.cs index 9cf05695e..7ae4558c4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ImageManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListData.cs index baf83a219..1666b2cda 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListViewItemRenderer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListViewItemRenderer.cs index d75967536..29cb31b4b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListViewItemRenderer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampListViewItemRenderer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampManager.cs index 106292ba0..4e0b572b3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Lamp/LampManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ListViewItemRenderer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ListViewItemRenderer.cs index ee70eced3..d292d3cfb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ListViewItemRenderer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ListViewItemRenderer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListColumnAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListColumnAttribute.cs index cc2eaba59..dcc852e48 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListColumnAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListColumnAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListTextFieldPopup.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListTextFieldPopup.cs index 3ca076dfd..f8d6ddc75 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListTextFieldPopup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListTextFieldPopup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListView.cs index 6bb5932a0..bd54dc447 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerListView.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerWindow.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerWindow.cs index ab55ff5ef..b8a2a37b3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerWindow.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/ManagerWindow.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundListData.cs index dec55156e..e3eb549d1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundManager.cs index b33734afe..fd4678b9d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/SoundManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListData.cs index f3464a726..170eea97f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListViewItemRenderer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListViewItemRenderer.cs index fa84155a7..1b1ac2dc9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListViewItemRenderer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchListViewItemRenderer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchManager.cs index ac05a72fb..c03593eb4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Switch/SwitchManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListData.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListData.cs index ac8a9b3cb..397a4a554 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListViewItemRenderer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListViewItemRenderer.cs index 2296dab41..e210b5d79 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListViewItemRenderer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireListViewItemRenderer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireManager.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireManager.cs index a2cb1f439..dd4284b75 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Managers/Wire/WireManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Toolbox/ToolboxEditor.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Toolbox/ToolboxEditor.cs index 2655a4039..107e1b2a6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Toolbox/ToolboxEditor.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Toolbox/ToolboxEditor.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Dialogs/TextInputDialog.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Dialogs/TextInputDialog.cs index 5c5e890be..b7f79bded 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Dialogs/TextInputDialog.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Dialogs/TextInputDialog.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/HandlesUtils.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/HandlesUtils.cs index f5ba6056e..760618795 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/HandlesUtils.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/HandlesUtils.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Icons.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Icons.cs index 8ee3d9a7c..d47362d73 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Icons.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/Icons.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/LayoutUtility.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/LayoutUtility.cs index a716ebacb..149c2f462 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/LayoutUtility.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/LayoutUtility.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/ProjectSettingsUtil.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/ProjectSettingsUtil.cs index 318711cbf..9a8087a82 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/ProjectSettingsUtil.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/ProjectSettingsUtil.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/TypeRestrictionPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/TypeRestrictionPropertyDrawer.cs index 4b2ec3082..edd7fea20 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/TypeRestrictionPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/TypeRestrictionPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/UnitPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/UnitPropertyDrawer.cs index 38cfdb086..f318599d8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/UnitPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/PropertyDrawers/UnitPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/SceneViewFramer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/SceneViewFramer.cs index a9cc1bbc2..0095424e3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/SceneViewFramer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/SceneViewFramer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElement.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElement.cs index eb89015d6..704cb800a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElementUtility.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElementUtility.cs index 852d80f8b..2dd4bf181 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElementUtility.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeElementUtility.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeView.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeView.cs index 97ae0fe4f..17ab6a01c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeView.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/Utils/TreeView/TreeView.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/AnimationInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/AnimationInspector.cs index 0025c282f..cd23917f4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/AnimationInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/AnimationInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperColliderInspector.cs index 27adf7ad1..bcc483637 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperExtensions.cs index 4f5ce5369..c8040f5b6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperInspector.cs index cbab78f06..735b5b52f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperRingAnimationInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperRingAnimationInspector.cs index 6c0ce82c9..f2276c375 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperRingAnimationInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Bumper/BumperRingAnimationInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ColliderInspector.cs index cef88ce5d..5ce721c78 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperBaseMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperBaseMeshInspector.cs index 23d4723f5..1807152af 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperBaseMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperBaseMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperColliderInspector.cs index c143a6f95..11c51aa95 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperExtensions.cs index b4d83636c..5d3c8105b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperInspector.cs index 2e480635a..f52655c88 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperRubberMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperRubberMeshInspector.cs index d774cb4c9..6e23a9328 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperRubberMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Flipper/FlipperRubberMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateColliderInspector.cs index 3370ee489..d6ceac1c4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateExtensions.cs index 5ea990071..c1a25f143 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateInspector.cs index abe82bc96..b6822b548 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateLifterInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateLifterInspector.cs index 8d99f35ff..88a09c520 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateLifterInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Gate/GateLifterInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetAnimationInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetAnimationInspector.cs index f14808458..4bde95356 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetAnimationInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetAnimationInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetColliderInspector.cs index 161ca86b4..b64929dca 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetInspector.cs index d01eda2b7..58aabc14a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/DropTargetInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetAnimationInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetAnimationInspector.cs index f6b061b41..fd7888c9c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetAnimationInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetAnimationInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetColliderInspector.cs index f45ae0bd8..785f5c9a3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetInspector.cs index ceb53c40e..e60f492a1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/HitTargetInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetColliderInspector.cs index 89dcd06a0..8df17607e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetExtensions.cs index 8ff8b1a0d..9b1bc4c05 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetInspector.cs index 0c8494c6f..e4a4ad5b9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/HitTarget/TargetInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs index 3fb28edcf..db73b30c2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/ItemInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerColliderInspector.cs index a69f4d536..03afaa6ec 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerExtensions.cs index 4c33d1612..9865ece2b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs index c29d66ac1..035d1e792 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Kicker/KickerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightExtensions.cs index 32ee4d11a..54895101b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightGroupInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightGroupInspector.cs index 9f4b4a2fa..36dc9e6b6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightGroupInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightGroupInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInsertMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInsertMeshInspector.cs index 2b35ae503..b2a822b28 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInsertMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInsertMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInspector.cs index 92fb75641..875569b74 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Light/LightInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MainInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MainInspector.cs index 9b1edacd6..fa542eea4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MainInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MainInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/CannonRotatorInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/CannonRotatorInspector.cs index 773d1c679..a2a4e5d5a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/CannonRotatorInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/CannonRotatorInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/MechMarkPropertyDrawer.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/MechMarkPropertyDrawer.cs index 3abd4a656..c0908fd68 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/MechMarkPropertyDrawer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/MechMarkPropertyDrawer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/RotatorInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/RotatorInspector.cs index 73dc33d33..9fbf514ff 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/RotatorInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/RotatorInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/ScoreMotorInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/ScoreMotorInspector.cs index 94d5ab7db..44e047a66 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/ScoreMotorInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Mech/ScoreMotorInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MeshInspector.cs index df7f68ae1..42e57f284 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideColliderInspector.cs index 5104be7b6..ea584b099 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideExtensions.cs index 272fd0b63..999ccdbd4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideInspector.cs index ef9428560..a4c0f9489 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideMeshInspector.cs index ba9bfbb85..4974e4d7f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/MetalWireGuide/MetalWireGuideMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/PhysicsMaterialInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/PhysicsMaterialInspector.cs index 2f7cf9957..33ae15694 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/PhysicsMaterialInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/PhysicsMaterialInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldColliderInspector.cs index 21115fbe7..14d898a98 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldInspector.cs index 93d5db8a2..1feac8464 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldMeshInspector.cs index cdd69cbb5..5f8cbc3f8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Playfield/PlayfieldMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerColliderInspector.cs index 1f006b18d..3e42fbbce 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerExtensions.cs index d5bbea0e5..de554ce51 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerFlatMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerFlatMeshInspector.cs index e421fe5b6..2c0760c07 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerFlatMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerFlatMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerInspector.cs index ad49af46f..443152b59 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerRodMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerRodMeshInspector.cs index e5763f20b..15516e199 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerRodMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerRodMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerSpringMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerSpringMeshInspector.cs index de2edd832..b5f56c363 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerSpringMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Plunger/PlungerSpringMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveColliderInspector.cs index 9de237554..950559d31 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveExtensions.cs index 409888721..55c2d499f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveInspector.cs index ec57c43ec..baa2cb860 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveMeshInspector.cs index 229723467..1a0aff833 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Primitive/PrimitiveMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampColliderInspector.cs index 93718d5a7..0da9803f4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampExtensions.cs index 9ea7adae4..3fa0ec153 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampFloorMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampFloorMeshInspector.cs index ffb766ad5..5e60ccd2f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampFloorMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampFloorMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampInspector.cs index c57e1d9dc..78e15362b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampWallMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampWallMeshInspector.cs index a1b400421..0345b758c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampWallMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Ramp/RampWallMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberColliderInspector.cs index 961a01291..8ee777099 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberExtensions.cs index 6df418ec5..10d22e5b2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberInspector.cs index b8c395696..254c0618d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberMeshInspector.cs index e2ed9b5f3..67a5c425c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Rubber/RubberMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerColliderInspector.cs index 0c570bdb8..424c34b8c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerExtensions.cs index ebc70ef8a..bd68d3c42 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerInspector.cs index 7d1f06ec4..a39255b01 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerPlateAnimationInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerPlateAnimationInspector.cs index ae64fdefc..48fd4a424 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerPlateAnimationInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Spinner/SpinnerPlateAnimationInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SlingshotInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SlingshotInspector.cs index 75874f5de..e789677f5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SlingshotInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SlingshotInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceColliderInspector.cs index 9f33e30c6..14d746913 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceExtensions.cs index 01fe836d2..abbe362bc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceInspector.cs index 2412b187d..484a0e874 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceSideMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceSideMeshInspector.cs index 2dbda0707..597380d59 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceSideMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceSideMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceTopMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceTopMeshInspector.cs index a8576707d..b704ab98e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceTopMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Surface/SurfaceTopMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Table/TableInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Table/TableInspector.cs index 3700962e0..1864ad60f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Table/TableInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Table/TableInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Teleporter/TeleporterInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Teleporter/TeleporterInspector.cs index 3290d4322..5f779e1b9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Teleporter/TeleporterInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Teleporter/TeleporterInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/TransformInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/TransformInspector.cs index de786f2db..26650e05f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/TransformInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/TransformInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerColliderInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerColliderInspector.cs index eb453bf3b..9e3371849 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerColliderInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerColliderInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerExtensions.cs index 47f3da6ce..8654c5305 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerInspector.cs index b03f344d5..0f33daa7e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerMeshInspector.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerMeshInspector.cs index 22f4824dd..2374f5c03 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerMeshInspector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trigger/TriggerMeshInspector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trough/TroughExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trough/TroughExtensions.cs index a0e4e0a88..00c446d96 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trough/TroughExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VPT/Trough/TroughExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Editor/VisualPinball.Unity.Editor.csproj b/VisualPinball.Unity/VisualPinball.Unity.Editor/VisualPinball.Unity.Editor.csproj index 90323121c..facbee91e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Editor/VisualPinball.Unity.Editor.csproj +++ b/VisualPinball.Unity/VisualPinball.Unity.Editor/VisualPinball.Unity.Editor.csproj @@ -4,7 +4,7 @@ VisualPinball.Unity.Editor A bridge between VisualPinball.Engine and Unity freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/ItemMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/ItemMatchAttribute.cs index c56e79f12..7b50f30a8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/ItemMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/ItemMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/NameMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/NameMatchAttribute.cs index 67fbf5f3f..7d53303a4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/NameMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/NameMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/RenderPipelineAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/RenderPipelineAttribute.cs index 63777f150..6e5156b0b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/RenderPipelineAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Item/RenderPipelineAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/AnyMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/AnyMatchAttribute.cs index b8337a43c..252cd0151 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/AnyMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/AnyMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/MetaMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/MetaMatchAttribute.cs index 04f6253d0..015703eeb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/MetaMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/MetaMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/RenderPipelineAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/RenderPipelineAttribute.cs index e99b806e4..6dd52ca51 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/RenderPipelineAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/RenderPipelineAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableMatchAttribute.cs index 26796de25..fbbdbc357 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableNameMatchAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableNameMatchAttribute.cs index a4a175fc5..97d3c74b7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableNameMatchAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/Table/TableNameMatchAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/TablePatcher.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/TablePatcher.cs index 33d3355d5..56d6183a4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/TablePatcher.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Matcher/TablePatcher.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/Defaults.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/Defaults.cs index 93abeac62..726327975 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/Defaults.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/Defaults.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/PatcherUtil.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/PatcherUtil.cs index bff2e1e4d..f4162f66a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/PatcherUtil.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Common/PatcherUtil.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Patcher.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Patcher.cs index be7eaec19..434bb4c2c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Patcher.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Patcher.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/CreatureFromTheBlackLagoon.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/CreatureFromTheBlackLagoon.cs index 75707dd46..737050f28 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/CreatureFromTheBlackLagoon.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/CreatureFromTheBlackLagoon.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Goldorak.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Goldorak.cs index 60436a4a4..2686fdeb2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Goldorak.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Goldorak.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/IndianaJones.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/IndianaJones.cs index 278566cdb..c391d7e24 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/IndianaJones.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/IndianaJones.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/JurassicPark.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/JurassicPark.cs index 1454a1c4e..4d8e3c1f0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/JurassicPark.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/JurassicPark.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Mississippi.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Mississippi.cs index b2553e76b..c4652401b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Mississippi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Mississippi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Rock.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Rock.cs index 676e6868f..f2b614c30 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Rock.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Rock.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Terminator2.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Terminator2.cs index 8091007b1..527636440 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Terminator2.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Terminator2.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/TomAndJerry.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/TomAndJerry.cs index d74750c34..5e67a6975 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/TomAndJerry.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/TomAndJerry.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Volley.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Volley.cs index 94ff0827d..b4b61d2bb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Volley.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/Volley.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/WipeOut.cs b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/WipeOut.cs index f09b53d76..ff8f1811a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/WipeOut.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/Patcher/Tables/WipeOut.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Patcher/VisualPinball.Unity.Patcher.csproj b/VisualPinball.Unity/VisualPinball.Unity.Patcher/VisualPinball.Unity.Patcher.csproj index 50234e782..4aba3dd37 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Patcher/VisualPinball.Unity.Patcher.csproj +++ b/VisualPinball.Unity/VisualPinball.Unity.Patcher/VisualPinball.Unity.Patcher.csproj @@ -4,7 +4,7 @@ VisualPinball.Unity.Patcher A bridge between VisualPinball.Engine and Unity freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/CoilPopulationTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/CoilPopulationTests.cs index 8c82e1754..a7b10a8ac 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/CoilPopulationTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/CoilPopulationTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/LampPopulationTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/LampPopulationTests.cs index a9428053a..38e4115c3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/LampPopulationTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/LampPopulationTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/SwitchPopulationTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/SwitchPopulationTests.cs index dcc722993..7391d36fd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/SwitchPopulationTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/Mappings/SwitchPopulationTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/BumperTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/BumperTests.cs index d8b6d03d8..f2d7600c0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/BumperTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/BumperTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/FlipperTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/FlipperTests.cs index 3cde3f8a2..af25d8632 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/FlipperTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/FlipperTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/GateTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/GateTests.cs index 75bb7b534..24c224a8e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/GateTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/GateTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/HitTargetTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/HitTargetTests.cs index 5e6306fb5..48a60a3a2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/HitTargetTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/HitTargetTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/KickerTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/KickerTests.cs index 3e461e5d4..8429c7acf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/KickerTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/KickerTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LegacyDataTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LegacyDataTests.cs index 33c1fc753..9fb940a68 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LegacyDataTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LegacyDataTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LightTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LightTests.cs index 649e7a4b7..05147369c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LightTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/LightTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/MetalWireGudieTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/MetalWireGudieTests.cs index 245859f1d..6eaa26bc0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/MetalWireGudieTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/MetalWireGudieTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PlungerTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PlungerTests.cs index cc2553d8f..a6477f34d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PlungerTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PlungerTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PrimitiveTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PrimitiveTests.cs index 2b1856964..9406aa9a6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PrimitiveTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/PrimitiveTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RampTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RampTests.cs index 04703077a..b2b41430b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RampTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RampTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RubberTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RubberTests.cs index d902b531c..b93d82940 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RubberTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/RubberTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SpinnerTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SpinnerTests.cs index 2681a4100..9627d3111 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SpinnerTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SpinnerTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SurfaceTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SurfaceTests.cs index 200f218d1..1d4061cd6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SurfaceTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/SurfaceTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TableTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TableTests.cs index 910798e7d..7700c704d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TableTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TableTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TriggerTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TriggerTests.cs index 5af80010f..b7430996c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TriggerTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TriggerTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TroughTests.cs b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TroughTests.cs index c6fe39c19..0382cfe66 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TroughTests.cs +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VPT/TroughTests.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity.Test/VisualPinball.Unity.Test.csproj b/VisualPinball.Unity/VisualPinball.Unity.Test/VisualPinball.Unity.Test.csproj index 987688aa0..a838e0ef9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity.Test/VisualPinball.Unity.Test.csproj +++ b/VisualPinball.Unity/VisualPinball.Unity.Test/VisualPinball.Unity.Test.csproj @@ -4,7 +4,7 @@ VisualPinball.Unity.Test A bridge between VisualPinball.Engine and Unity freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/ApiAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/ApiAttribute.cs index 748c4abcb..db0cc58d6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/ApiAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/ApiAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/BlobArray.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/BlobArray.cs index a891b562b..870a91b88 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/BlobArray.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/BlobArray.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/BoundingBoxComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/BoundingBoxComponent.cs index d211c5786..3f61ca12b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/BoundingBoxComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/BoundingBoxComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/EdgeSet.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/EdgeSet.cs index 93a0b69a5..206def19b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/EdgeSet.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/EdgeSet.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/Logging.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/Logging.cs index a86636dba..0015d17fa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/Logging.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/Logging.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/Math.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/Math.cs index 8a7508e31..98e77d59d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/Math.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/Math.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/SerializableDictionary.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/SerializableDictionary.cs index 72a677e9f..e60494034 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/SerializableDictionary.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/SerializableDictionary.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/TableSelector.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/TableSelector.cs index 77503e989..62c6ed2b8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/TableSelector.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/TableSelector.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/TypeRestrictionAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/TypeRestrictionAttribute.cs index b8f3ef363..ff4df9609 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/TypeRestrictionAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/TypeRestrictionAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/UnitAttribute.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/UnitAttribute.cs index 716457952..c122ebc21 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/UnitAttribute.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/UnitAttribute.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/UnityTarget.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/UnityTarget.cs index a7779132c..120277814 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/UnityTarget.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/UnityTarget.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Common/UnsafeEx.cs b/VisualPinball.Unity/VisualPinball.Unity/Common/UnsafeEx.cs index 56cd96b10..1fe1f6767 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Common/UnsafeEx.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Common/UnsafeEx.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Display/DisplayComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Display/DisplayComponent.cs index 7f2cb9a01..eb29ac3b1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Display/DisplayComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Display/DisplayComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Display/DotMatrixDisplayComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Display/DotMatrixDisplayComponent.cs index 51ff1d5d8..d4da3bd1c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Display/DotMatrixDisplayComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Display/DotMatrixDisplayComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelComponent.cs index cdb5fc280..0dbe432f9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelDisplayComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelDisplayComponent.cs index 76ffbc4fe..4da3d574d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelDisplayComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Display/ScoreReelDisplayComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Display/SegmentDisplayComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Display/SegmentDisplayComponent.cs index 1ff244e59..6b5cc773f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Display/SegmentDisplayComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Display/SegmentDisplayComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/ColorExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/ColorExtensions.cs index 1a971a6fa..00114b1c2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/ColorExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/ColorExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MaterialExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MaterialExtensions.cs index 679b49fe5..c683577c2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MaterialExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MaterialExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MathExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MathExtensions.cs index 28c14ef29..bc7c4e23f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MathExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MathExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/Matrix3DExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/Matrix3DExtensions.cs index 01af3ad8a..7f0b9c2b7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/Matrix3DExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/Matrix3DExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MeshExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MeshExtensions.cs index b61501566..458063a31 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/MeshExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/MeshExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/SoundExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/SoundExtensions.cs index 52459fa2d..511cf737f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/SoundExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/SoundExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/TextureExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/TextureExtensions.cs index 072abcbfe..0eef54a2c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/TextureExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/TextureExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Extensions/TransformExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/Extensions/TransformExtensions.cs index 0c7f6a9cd..84ed8b8ba 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Extensions/TransformExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Extensions/TransformExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/BallRollerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/BallRollerComponent.cs index 4b76ea169..436b94824 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/BallRollerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/BallRollerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraClipPlane.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraClipPlane.cs index 8bfb41643..fbb222554 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraClipPlane.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraClipPlane.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraController.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraController.cs index f284a2e68..856ea1369 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraController.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraController.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraSetting.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraSetting.cs index 8569fd143..8332bd590 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/CameraSetting.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/CameraSetting.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/CoilPlayer.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/CoilPlayer.cs index fc5f7efb9..75fa703f9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/CoilPlayer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/CoilPlayer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/DebugBallCreator.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/DebugBallCreator.cs index dd7447285..29778fc63 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/DebugBallCreator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/DebugBallCreator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceCoil.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceCoil.cs index d9577eb35..2ca514d3f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceCoil.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceCoil.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceSwitch.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceSwitch.cs index a84aa03ed..1c4b945b6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceSwitch.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/DeviceSwitch.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/DisplayPlayer.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/DisplayPlayer.cs index fde15d4e4..a79978c92 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/DisplayPlayer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/DisplayPlayer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/DefaultGamelogicEngine.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/DefaultGamelogicEngine.cs index b274342ea..6d237596e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/DefaultGamelogicEngine.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/DefaultGamelogicEngine.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/IGamelogicEngine.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/IGamelogicEngine.cs index 0345c7f29..b13f87a26 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/IGamelogicEngine.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/Engine/IGamelogicEngine.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/LampPlayer.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/LampPlayer.cs index 68dbcf45d..0d909bef6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/LampPlayer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/LampPlayer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/Player.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/Player.cs index b044fbd17..47d088618 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/Player.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/Player.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchConfig.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchConfig.cs index 602f7e969..ee188841f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchConfig.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchConfig.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchHandler.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchHandler.cs index ee4a73447..10808496c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchHandler.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchHandler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchPlayer.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchPlayer.cs index fee223f33..a8beaf2e5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchPlayer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/SwitchPlayer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballAutomaticWorldBootstrap.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballAutomaticWorldBootstrap.cs index 15bf91cbc..46fe9dcb8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballAutomaticWorldBootstrap.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballAutomaticWorldBootstrap.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -35,4 +35,4 @@ static void Initialize() } } -#endif \ No newline at end of file +#endif diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballSimulationSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballSimulationSystemGroup.cs index 5d3912e43..ce713a370 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballSimulationSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/VisualPinballSimulationSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Game/WirePlayer.cs b/VisualPinball.Unity/VisualPinball.Unity/Game/WirePlayer.cs index fd7726c29..66f07cda8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Game/WirePlayer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Game/WirePlayer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/IMaterialProvider.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/IMaterialProvider.cs index f74e7954a..8eb06cbf6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/IMaterialProvider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/IMaterialProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/IMeshProvider.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/IMeshProvider.cs index 9a5667222..af65110b5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/IMeshProvider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/IMeshProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/ITextureProvider.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/ITextureProvider.cs index d527f7b90..c1df08836 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/ITextureProvider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/ITextureProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/Job/TableLoader.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/Job/TableLoader.cs index 3afdfb576..16c102250 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/Job/TableLoader.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/Job/TableLoader.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/MemHelper.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/MemHelper.cs index 67c21e9e0..cc8a67337 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/MemHelper.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/MemHelper.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/PatcherManager.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/PatcherManager.cs index e6a895dbb..d0b032d61 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/PatcherManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/PatcherManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Import/ScaleNormalizer.cs b/VisualPinball.Unity/VisualPinball.Unity/Import/ScaleNormalizer.cs index 78c514473..2ba22e3eb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Import/ScaleNormalizer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Import/ScaleNormalizer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Input/InputManager.cs b/VisualPinball.Unity/VisualPinball.Unity/Input/InputManager.cs index 811e0d61a..effc40b8a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Input/InputManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Input/InputManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Input/OnScreenInputSystemButton.cs b/VisualPinball.Unity/VisualPinball.Unity/Input/OnScreenInputSystemButton.cs index 92d30685c..599b11071 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Input/OnScreenInputSystemButton.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Input/OnScreenInputSystemButton.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/CoilMapping.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/CoilMapping.cs index 8d2743e89..c405a4baf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/CoilMapping.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/CoilMapping.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/LampMapping.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/LampMapping.cs index 913d54f9b..e18ed702f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/LampMapping.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/LampMapping.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingConfig.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingConfig.cs index c74872f76..492d9ad54 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingConfig.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingConfig.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingEnums.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingEnums.cs index d850722fd..57121b4b9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingEnums.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/MappingEnums.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/SwitchMapping.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/SwitchMapping.cs index b55ff8e7f..9c13be01e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/SwitchMapping.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/SwitchMapping.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Mappings/WireMapping.cs b/VisualPinball.Unity/VisualPinball.Unity/Mappings/WireMapping.cs index 1277f0191..35d9d548b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Mappings/WireMapping.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Mappings/WireMapping.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/CircleCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/CircleCollider.cs index d69103ca5..ac4a7f963 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/CircleCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/CircleCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Collider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Collider.cs index a4e118c1d..5b062154f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Collider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Collider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderInfo.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderInfo.cs index 39c84f733..2ce7013cf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderInfo.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderInfo.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderUtils.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderUtils.cs index bacbde69b..80ca435be 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderUtils.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ColliderUtils.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ICollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ICollider.cs index ccc0e9c6b..a17605b2e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ICollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/ICollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Line3DCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Line3DCollider.cs index ad59c0ab3..0c8f7a24a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Line3DCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/Line3DCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineCollider.cs index 2d2e6337a..3469616d9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineSlingshotCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineSlingshotCollider.cs index 3c6a27a9d..f03b7593f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineSlingshotCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineSlingshotCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineZCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineZCollider.cs index f39f20fb5..20eb1afcf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineZCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/LineZCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PlaneCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PlaneCollider.cs index 3b665e6d3..260f0098b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PlaneCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PlaneCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PointCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PointCollider.cs index 389bf9db4..94ea677fc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PointCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/PointCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/TriangleCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/TriangleCollider.cs index a0ad4ed97..ab63b4a37 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/TriangleCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collider/TriangleCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/Aabb.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/Aabb.cs index a4859c3a4..232ae0c34 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/Aabb.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/Aabb.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/BallColliderBounds.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/BallColliderBounds.cs index 6670ed857..eee4535e6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/BallColliderBounds.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/BallColliderBounds.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderAllocationJob.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderAllocationJob.cs index 43e5813a4..6c5429515 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderAllocationJob.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderAllocationJob.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBlob.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBlob.cs index 6a2c384a1..66a0e3efd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBlob.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBlob.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBounds.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBounds.cs index bf84d8733..0228d60e0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBounds.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderBounds.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderData.cs index bab58e88e..13b580640 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderHeader.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderHeader.cs index ae58a693c..49a127b5e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderHeader.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderHeader.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderType.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderType.cs index dcdda8b97..540d14dd4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderType.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ColliderType.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/CollisionEventData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/CollisionEventData.cs index 6e6ce297b..a72e06369 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/CollisionEventData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/CollisionEventData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactBufferElement.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactBufferElement.cs index e8f269a57..e1e1992ee 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactBufferElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactBufferElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactSystem.cs index bad6edd40..7d417000f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/ContactSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicBroadPhaseSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicBroadPhaseSystem.cs index 947e26149..394ecdc65 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicBroadPhaseSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicBroadPhaseSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicCollisionSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicCollisionSystem.cs index 607c5067a..167f4a897 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicCollisionSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicCollisionSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicNarrowPhaseSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicNarrowPhaseSystem.cs index a605b731d..aede3be70 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicNarrowPhaseSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/DynamicNarrowPhaseSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdNode.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdNode.cs index ef2ec25d7..8d97efcb4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdNode.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdNode.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdRoot.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdRoot.cs index 4a78f18e8..7b181cecf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdRoot.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/KdRoot.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/LineSlingshotData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/LineSlingshotData.cs index da911cdd5..280313729 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/LineSlingshotData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/LineSlingshotData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingDynamicBufferElement.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingDynamicBufferElement.cs index 76e19357a..4f4dae0e7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingDynamicBufferElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingDynamicBufferElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingStaticBufferElement.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingStaticBufferElement.cs index 39e572818..05d4b43fd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingStaticBufferElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/OverlappingStaticBufferElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/PhysicsMaterialData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/PhysicsMaterialData.cs index 613d04f00..11b50b176 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/PhysicsMaterialData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/PhysicsMaterialData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTree.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTree.cs index af5cba7f0..8e2c40fec 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTree.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTree.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeBlob.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeBlob.cs index d8b1ab178..8f6523132 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeBlob.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeBlob.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeCreator.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeCreator.cs index 0baf02c6b..649ddfe6f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeCreator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeCreator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeData.cs index 2969873b6..1d8326a1c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/QuadTreeData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticBroadPhaseSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticBroadPhaseSystem.cs index c77a438a7..fa47a9c36 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticBroadPhaseSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticBroadPhaseSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticCollisionSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticCollisionSystem.cs index f328965e3..a546130c9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticCollisionSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticCollisionSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticNarrowPhaseSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticNarrowPhaseSystem.cs index fedb2f9a5..8c4cb5068 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticNarrowPhaseSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Collision/StaticNarrowPhaseSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperSlider.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperSlider.cs index 36fc22fc2..6500ba6c7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperSlider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperSlider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperState.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperState.cs index e964bc89f..1e0635ab5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperState.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/DebugFlipperState.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/IDebugUI.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/IDebugUI.cs index 0e24de897..339434703 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/IDebugUI.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/DebugUI/IDebugUI.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/DefaultPhysicsEngine.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/DefaultPhysicsEngine.cs index fac52f9f5..7b9cf1554 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/DefaultPhysicsEngine.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/DefaultPhysicsEngine.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/IPhysicsEngine.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/IPhysicsEngine.cs index 8bc8ca89c..ae074efd3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/IPhysicsEngine.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Engine/IPhysicsEngine.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Event/EventData.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Event/EventData.cs index ede0a644f..5da918989 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Event/EventData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Event/EventData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/Physics.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/Physics.cs index 233cd2da4..e5f53c5cd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/Physics.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/Physics.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/CreateBallEntityCommandBufferSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/CreateBallEntityCommandBufferSystem.cs index 5140c1f6b..bf5d7595e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/CreateBallEntityCommandBufferSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/CreateBallEntityCommandBufferSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/SimulateCycleSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/SimulateCycleSystemGroup.cs index f32ff732a..b88acb386 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/SimulateCycleSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/SimulateCycleSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/TransformMeshesSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/TransformMeshesSystemGroup.cs index 02c7f09a5..a59943903 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/TransformMeshesSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/TransformMeshesSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateAnimationsSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateAnimationsSystemGroup.cs index 94943372c..e80649d50 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateAnimationsSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateAnimationsSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateDisplacementSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateDisplacementSystemGroup.cs index 278f2544e..971fcf294 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateDisplacementSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateDisplacementSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateVelocitiesSystemGroup.cs b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateVelocitiesSystemGroup.cs index ca813cd8f..41d7c672a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateVelocitiesSystemGroup.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Physics/SystemGroup/UpdateVelocitiesSystemGroup.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IBallConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IBallConverter.cs index 9140cc87b..c7cf17602 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IBallConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IBallConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/ILightConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/ILightConverter.cs index 1f802fa2d..578b70957 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/ILightConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/ILightConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialAdapter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialAdapter.cs index 14df3e021..7ee5d941f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialAdapter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialAdapter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialConverter.cs index f50b9082b..74e411b49 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IMaterialConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IPrefabProvider.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IPrefabProvider.cs index 4e37674f3..a8cd1eae9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/IPrefabProvider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/IPrefabProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/RenderPipeline.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/RenderPipeline.cs index f2711518f..19ff7ef92 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/RenderPipeline.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/RenderPipeline.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardBallConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardBallConverter.cs index 9291c6e1a..5334e3bb3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardBallConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardBallConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardLightConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardLightConverter.cs index 9945f0efd..8a319d8f4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardLightConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardLightConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialAdapter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialAdapter.cs index 07c65951d..07f5b014a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialAdapter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialAdapter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialConverter.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialConverter.cs index 295f372de..7f7814c3a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialConverter.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardMaterialConverter.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardPrefabProvider.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardPrefabProvider.cs index 795932a86..1c4b256aa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardPrefabProvider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardPrefabProvider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardRenderPipeline.cs b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardRenderPipeline.cs index 399ea69db..6d472e8dd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardRenderPipeline.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/Rendering/Standard/StandardRenderPipeline.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/AnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/AnimationComponent.cs index d174b7643..ea1b45623 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/AnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/AnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallApi.cs index ca8c46289..941748482 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallCollider.cs index e6b3f9703..68a6cfffe 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallData.cs index b40a60c86..6afbe306e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallDisplacementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallDisplacementSystem.cs index 49d418746..6eb140d6c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallDisplacementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallDisplacementSystem.cs @@ -1,5 +1,5 @@ -// Visual Pinball Engineball.Orientation -// Copyright (C) 2022 freezy and VPE Team +// Visual Pinball Engine +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallInsideOfBufferElement.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallInsideOfBufferElement.cs index 49490b8ad..f7bf14f30 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallInsideOfBufferElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallInsideOfBufferElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallLastPositionsBufferElement.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallLastPositionsBufferElement.cs index a7ef2154f..338789778 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallLastPositionsBufferElement.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallLastPositionsBufferElement.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallManager.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallManager.cs index 905533f5f..700cb6146 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallManager.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallManager.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallMovementSystem.cs index 630201185..6fe7d797c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallRingCounterSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallRingCounterSystem.cs index 1d68e848f..755a9b6aa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallRingCounterSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallRingCounterSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallSpinHackSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallSpinHackSystem.cs index fdba2a9a3..96b8ab4a1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallSpinHackSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallSpinHackSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallVelocitySystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallVelocitySystem.cs index ae949d804..6667ee1c9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallVelocitySystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ball/BallVelocitySystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperApi.cs index 2ae585dea..496e4441c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperCollider.cs index 1e916a60c..bf24d7687 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperColliderComponent.cs index 70292cd99..89c39eee6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperComponent.cs index bb2b7210c..326c34b6f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationComponent.cs index bc2a60661..29cccdfff 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationData.cs index 327744c32..dbbffb1fe 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationSystem.cs index d91423784..80bc689b5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingMovementSystem.cs index 3dc001552..5771ff2e2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperRingMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationComponent.cs index 10903d061..ae610f5e6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationData.cs index 7be5653eb..0ea2c9e34 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationSystem.cs index e35824815..bd0bbad1c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtMovementSystem.cs index 4da3a3bd5..fead826ca 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperSkirtMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperStaticData.cs index b24f468a3..b80e2430d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Bumper/BumperStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollidableApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollidableApi.cs index 698bb6fed..e752663ab 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollidableApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollidableApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ColliderComponent.cs index de7c084fa..b656ead52 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchApi.cs index 6e99d2136..070322300 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchComponent.cs index 2cdece28b..882c99989 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/CollisionSwitch/CollisionSwitchComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankApi.cs index 016144e65..e01a7c1ee 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankComponent.cs index 5bbcfbadc..73f7e40fc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/DropTargetBank/DropTargetBankComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/EventArgs.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/EventArgs.cs index 52804889f..274f76534 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/EventArgs.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/EventArgs.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperApi.cs index 6a1824065..fe8fc21e5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperBaseMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperBaseMeshComponent.cs index b8a4e9a01..4faec42fb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperBaseMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperBaseMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCollider.cs index 43696584c..8e61ecb25 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperColliderComponent.cs index 4261caf7f..155bf5426 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperComponent.cs index ebce81318..e03fc4839 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrection.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrection.cs index 00bef7fd9..dc3edaaa7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrection.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrection.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionAsset.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionAsset.cs index a5ffba8c9..5d32e350a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionAsset.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionAsset.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionBlob.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionBlob.cs index f1c01268e..5801067b4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionBlob.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionBlob.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionData.cs index fca75e36c..aae7c2520 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperCorrectionData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperDisplacementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperDisplacementSystem.cs index bdd63878f..5d0e33d4d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperDisplacementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperDisplacementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperHitData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperHitData.cs index e8500b43c..8182069d9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperHitData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperHitData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperMovementData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperMovementData.cs index 8831e4117..801a02deb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperMovementData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperMovementData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRotateSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRotateSystem.cs index 81ee41d92..45d2de024 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRotateSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRotateSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRubberMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRubberMeshComponent.cs index 853dd278b..517c8737a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRubberMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperRubberMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperStaticData.cs index 95ccc665a..95d61f84b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperTricksData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperTricksData.cs index 69442df92..65196a82b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperTricksData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperTricksData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocityData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocityData.cs index 486d12bfc..058ec9253 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocityData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocityData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocitySystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocitySystem.cs index 8c9670477..e3f631c01 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocitySystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/FlipperVelocitySystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/SolenoidStateData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/SolenoidStateData.cs index 29126fdfe..8b4a92cb6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/SolenoidStateData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Flipper/SolenoidStateData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateApi.cs index 664fd21b8..08847e285 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateCollider.cs index 608218339..ce6b4a1dc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderComponent.cs index d914196e5..1508a6c7c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderGenerator.cs index e41724a15..0f01a0a90 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateComponent.cs index c8e487473..9c8eb969d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateDisplacementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateDisplacementSystem.cs index c07c58560..d82478f53 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateDisplacementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateDisplacementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterApi.cs index f989dde81..eaf5fbd6f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterComponent.cs index 9c6969bc4..bb7d970f0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateLifterComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementData.cs index 685df1b9f..c40586b53 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementSystem.cs index e4b82ca6e..19683d84e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateStaticData.cs index 7b77240b6..4eb9a0194 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateVelocitySystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateVelocitySystem.cs index 88040c6c8..c26d0a073 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateVelocitySystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateVelocitySystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateWireAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateWireAnimationComponent.cs index d1898fc2e..b5857e119 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateWireAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Gate/GateWireAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationComponent.cs index a27bf3695..10e991705 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationData.cs index e96e4d03f..71e320e64 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationSystem.cs index 4ec3b5a94..f05ae26a5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetApi.cs index 6f5a85b0a..959d5566d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderComponent.cs index 7c88d8ef9..dc262808b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderGenerator.cs index 70e677a31..97c2cf3ce 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetComponent.cs index 9650e0e4e..2535133de 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetStaticData.cs index 484dc269b..931feac11 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetTransformationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetTransformationSystem.cs index ad49540f8..31d4f1f9f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetTransformationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/DropTargetTransformationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationComponent.cs index 3c0bc3b35..f69c9106a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationData.cs index 863923927..adf29abba 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationSystem.cs index 7aa22af90..63191eba2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetApi.cs index cd3a72243..9ed73a566 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderComponent.cs index 48a47d47f..a222e4969 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderGenerator.cs index a9fe41b38..eeaa082df 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetComponent.cs index 375a2fd88..576a51bdc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetStaticData.cs index d8ab6620d..51553bf11 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetTransformationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetTransformationSystem.cs index f98687089..6f2925a3f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetTransformationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/HitTargetTransformationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetCollider.cs index 61787c8b3..086f07dcb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetColliderGenerator.cs index c18755da5..91eefacc4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetComponent.cs index d2d63f470..a9ff6a93d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/HitTarget/TargetComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IAnimationComponent.cs index 4e8e050a7..ed5dd658a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IApi.cs index 003855d4f..0f6fb7f95 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ICoilDeviceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ICoilDeviceComponent.cs index 684a923e8..f4ea7a15c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ICoilDeviceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ICoilDeviceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IColliderComponent.cs index 2d65986f8..361fa3e56 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IDeviceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IDeviceComponent.cs index ebadea3bc..ba439dc22 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IDeviceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IDeviceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IIdentifiableItemComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IIdentifiableItemComponent.cs index 6787cef22..ca929f0d8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IIdentifiableItemComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IIdentifiableItemComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ILampDeviceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ILampDeviceComponent.cs index e91bef726..88947f701 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ILampDeviceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ILampDeviceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ILayerableItemComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ILayerableItemComponent.cs index 1cc9c1ac4..9988119aa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ILayerableItemComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ILayerableItemComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainComponent.cs index 719caf8a6..8178699e9 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainRenderableComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainRenderableComponent.cs index dc7648c19..75c526700 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainRenderableComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMainRenderableComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMeshComponent.cs index f370c9b48..0a85913fc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IRotatableComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IRotatableComponent.cs index a9d2d7176..824828789 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IRotatableComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IRotatableComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ISurfaceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ISurfaceComponent.cs index c92543ede..fcfbec986 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ISurfaceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ISurfaceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ISwitchDeviceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ISwitchDeviceComponent.cs index ee6c3ae9d..e68dcd57f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ISwitchDeviceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ISwitchDeviceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ITriggerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ITriggerComponent.cs index 00a20c7f6..79d7e170d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ITriggerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ITriggerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/IWireableComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/IWireableComponent.cs index de6fd33f9..877ee6f33 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/IWireableComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/IWireableComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemApi.cs index 72954af8d..5360f176a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemComponent.cs index d797bab3d..557f09a90 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/ItemComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerApi.cs index 6e7239151..2d387eacd 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollider.cs index 8fc0a6860..c68ea88fc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderComponent.cs index 1b85cb7ab..1c54bfac4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderMeshData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderMeshData.cs index 3cc3530cf..144673475 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderMeshData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerColliderMeshData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollisionData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollisionData.cs index ca1b1cbda..facf1ec24 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollisionData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerCollisionData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs index cf7d732ae..de586fab7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerStaticData.cs index cd8c41ea8..95fc7aaa8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Kicker/KickerStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightApi.cs index 8e9376af0..aa5d7377b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightComponent.cs index d96dd6798..f5150f67d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupApi.cs index 8db7c512e..e49666c1e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupComponent.cs index 044fcf155..a64a087b1 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightGroupComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightInsertMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightInsertMeshComponent.cs index aee380ae9..ebd37aa2e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightInsertMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Light/LightInsertMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MainComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MainComponent.cs index 6187c4cc1..23b4fc75b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MainComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MainComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MainRenderableComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MainRenderableComponent.cs index ab3466aa9..014bd4175 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MainRenderableComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MainRenderableComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/CannonRotatorComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/CannonRotatorComponent.cs index dc83e29ab..fff0191d0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/CannonRotatorComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/CannonRotatorComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/IMechHandler.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/IMechHandler.cs index 02bd4822b..b8c1f0930 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/IMechHandler.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/IMechHandler.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/MechMark.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/MechMark.cs index 88978303a..a482d406a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/MechMark.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/MechMark.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/RotatorComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/RotatorComponent.cs index df780afb4..d895dbe6e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/RotatorComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/RotatorComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/ScoreMotorApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/ScoreMotorApi.cs index 234b9d269..df699cfa5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/ScoreMotorApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/ScoreMotorApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechApi.cs index e08de473f..2963a8013 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechComponent.cs index ead0c02b8..cb392f9d0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Mech/StepRotatorMechComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MeshComponent.cs index ef6d686ab..51f85fa21 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideApi.cs index 61519efba..eabe4b925 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderComponent.cs index 030ca1012..f77892b28 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderGenerator.cs index bf742e777..f974ddbdb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideComponent.cs index 14f65cfed..040aeb698 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideMeshComponent.cs index 28f73c931..85bf57062 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/MetalWireGuide/MetalWireGuideMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/PhysicsMaterialAsset.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/PhysicsMaterialAsset.cs index 3a4fea942..9ae40048b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/PhysicsMaterialAsset.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/PhysicsMaterialAsset.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldApi.cs index fe74feb11..0bd65fa64 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldColliderComponent.cs index edf825c77..d804d7298 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldComponent.cs index ab09461e9..12a7e139a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldMeshComponent.cs index 44b0e497e..10cd57b57 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Playfield/PlayfieldMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationData.cs index d47ce5365..f4a9cd8c2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationSystem.cs index 7a29319db..0d2943df8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerApi.cs index f5ab761e8..04f363c28 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCollider.cs index 77ff753bb..9ee87dab3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderComponent.cs index 0900f6953..8e03fcac7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderData.cs index 9c403c682..eb2eb929e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerColliderData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCommands.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCommands.cs index 96d1a98d6..54a28cd5d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCommands.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerCommands.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerComponent.cs index 73a7aa337..fb81a5baf 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerDisplacementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerDisplacementSystem.cs index e1e4ef818..ab6b15616 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerDisplacementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerDisplacementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerFlatMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerFlatMeshComponent.cs index 08f937804..362f0c84f 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerFlatMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerFlatMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMeshComponent.cs index e1bb9b7d6..6a857e25c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMovementData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMovementData.cs index cf9688195..436cfdd57 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMovementData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerMovementData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerRodMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerRodMeshComponent.cs index d12719cf1..2d248b107 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerRodMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerRodMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerSpringMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerSpringMeshComponent.cs index 9bc89ab0d..e64e3557c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerSpringMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerSpringMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerStaticData.cs index 82d516d40..e7fc3d150 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerTransformationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerTransformationSystem.cs index 51bdd0092..9d84108f4 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerTransformationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerTransformationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocityData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocityData.cs index 14ff3c931..e7c1fc5dc 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocityData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocityData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocitySystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocitySystem.cs index 6a2420b5c..29994ca42 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocitySystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Plunger/PlungerVelocitySystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveApi.cs index fe2a9adb8..ae92367b7 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderComponent.cs index ccde222d3..cb77d793d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderGenerator.cs index b188127c6..b91b0c8e0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveComponent.cs index feb00e3d8..71c6c4739 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveMeshComponent.cs index b7ec485bf..4b209cf51 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Primitive/PrimitiveMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampApi.cs index 820e44b02..93f5098e6 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderComponent.cs index a46019ece..203c1d124 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderGenerator.cs index e454e49de..f2214b7ef 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs index 2ca1d2521..0b6969653 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampFloorMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampFloorMeshComponent.cs index faef2c387..dd8c180f3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampFloorMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampFloorMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWallMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWallMeshComponent.cs index 9bcd90b3e..ab72368b2 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWallMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWallMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWireMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWireMeshComponent.cs index cdf8c111e..00286b2ff 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWireMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampWireMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberApi.cs index 941827df5..ea61d2ada 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderComponent.cs index 4b79f5da3..90bfd17eb 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderGenerator.cs index debd591e1..8142ae59b 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberComponent.cs index 0043d7ca5..4a0698957 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberMeshComponent.cs index 54ed228f7..575d8308e 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Rubber/RubberMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerApi.cs index 3556748d1..7c9d57203 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerCollider.cs index 0ce693ac8..bf27cc941 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderComponent.cs index 8993f8ab9..a0a7018e0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderGenerator.cs index 465cc2eac..859528890 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerComponent.cs index d8d68b97e..aa6a89339 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerDisplacementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerDisplacementSystem.cs index 45b98d615..a60e16ed8 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerDisplacementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerDisplacementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementData.cs index 153124b8e..469e48ee3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementSystem.cs index 62d6db03c..5fa5f0ac3 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerPlateAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerPlateAnimationComponent.cs index 7e07a4636..addded44a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerPlateAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerPlateAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerStaticData.cs index 4c84fdde9..87b7c0b06 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerVelocitySystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerVelocitySystem.cs index d27ea9897..4986b510d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerVelocitySystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Spinner/SpinnerVelocitySystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotApi.cs index 8d609d34b..aeb7b50af 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotComponent.cs index 804f22f0a..bb711442a 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SlingshotComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceApi.cs index 064c85ecf..fef9b2063 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderComponent.cs index 6510fe2c9..17fa8338c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderGenerator.cs index 9c9f3f420..565d05dab 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceComponent.cs index c060c42b1..7b56dbeea 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceSideMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceSideMeshComponent.cs index fc75d326b..43d46e694 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceSideMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceSideMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceTopMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceTopMeshComponent.cs index f81bbabb6..31a60aeb0 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceTopMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Surface/SurfaceTopMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/LegacyContainer.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/LegacyContainer.cs index 9f6e8e9d6..3db015d54 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/LegacyContainer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/LegacyContainer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/SceneTableContainer.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/SceneTableContainer.cs index 925c0df97..aa646d576 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/SceneTableContainer.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/SceneTableContainer.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableApi.cs index e7253d8f3..cce1c281d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableComponent.cs index c8c867a26..435ece62d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Table/TableComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterApi.cs index 3798e8863..d39cf223c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterComponent.cs index 997364743..8427c0828 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Teleporter/TeleporterComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationComponent.cs index 4a1d40d65..ef3073286 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationData.cs index e2b825dc1..86cc7cc23 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationSystem.cs index 8c8d51276..4ba2d2fa5 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerAnimationSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerApi.cs index 792d6c752..10370b4aa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerCollider.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerCollider.cs index 80c92a5ae..e71e85920 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerCollider.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerCollider.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderComponent.cs index 68ecc9b85..ab6f283de 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderGenerator.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderGenerator.cs index ea8897e11..867b1ef80 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderGenerator.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerColliderGenerator.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerComponent.cs index 4d94e2411..b5823ab99 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMeshComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMeshComponent.cs index 1d866d4b4..f7641b23c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMeshComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMeshComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementData.cs index 9d6115dfd..9465563ed 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementSystem.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementSystem.cs index b0a5114bb..2f5ce005d 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementSystem.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerMovementSystem.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerStaticData.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerStaticData.cs index fcf6f6769..21ae12150 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerStaticData.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trigger/TriggerStaticData.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughApi.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughApi.cs index ead7f2e56..ea4ad9d3c 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughApi.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughApi.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughComponent.cs index 31bf7b5b7..5df1c3520 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughComponent.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughExtensions.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughExtensions.cs index b0e8499cf..4007dd806 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughExtensions.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Trough/TroughExtensions.cs @@ -1,5 +1,5 @@ // Visual Pinball Engine -// Copyright (C) 2022 freezy and VPE Team +// Copyright (C) 2023 freezy and VPE Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/VisualPinball.Unity/VisualPinball.Unity/VisualPinball.Unity.csproj b/VisualPinball.Unity/VisualPinball.Unity/VisualPinball.Unity.csproj index d48bd42b0..59f8a6baa 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VisualPinball.Unity.csproj +++ b/VisualPinball.Unity/VisualPinball.Unity/VisualPinball.Unity.csproj @@ -4,7 +4,7 @@ VisualPinball.Unity A bridge between VisualPinball.Engine and Unity freezy;ravarcade;shaderbytes;rbxnk;jsm174;Vroonsh;Rowlan;kleisauke;ecurtz;Pandeli;Cupid - Copyright 2022 freezy - <freezy@vpdb.io> + Copyright 2023 freezy - <freezy@vpdb.io> 0.1.0.0 0.1.0.0 0.1.0.0 From 9e3d76509cf0e13219796fa641fb06b885d30f58 Mon Sep 17 00:00:00 2001 From: freezy Date: Wed, 4 Jan 2023 00:59:15 +0100 Subject: [PATCH 10/11] doc: Update README. --- .github/readme-editor.jpg | Bin 0 -> 1193463 bytes README.md | 64 +++++++++++++++++++++++++------------- 2 files changed, 42 insertions(+), 22 deletions(-) create mode 100644 .github/readme-editor.jpg diff --git a/.github/readme-editor.jpg b/.github/readme-editor.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cc000be18fbac962b0b6a831cd9172ee288fed0 GIT binary patch literal 1193463 zcmeFa2UJtdw4MS;C8WF)EWhu&_jm8RYrXaUYyH>rurg<6&z_k*duH~T+57ARv_&u$z5oM`xe$319{{luXKapV9n1R&rK zNh7}-KM2N?qTB)cpJktb_a0y`@frY#ANX}Y?Tm1O3!QUA_#;qm2wx$21!*OrW7h6I z&WIq?aX?;HUO`<}PF+?}NLE%|R#{zE7OVvT=pNGiXq!R-fQPid+F%17(*24vDehtd z00Rx(PdXX?-WM9-fAxh%;_rQ-rTJ9{jXdq|x;Z$1)@K0TL9PJ1cgknV0>HA{3kMw& zfR?fduUpY{(bxQv+h5@%6i}+D=X_kYQTE%M-le_Nd=U*06P<419FE(7@%dRp<}0^jDVfo zOKG5if>iFI*}Xu5sTUnULrcGhfsu)M?>=w>{4tiHr=g>zr`^NIz_f>s zMFGrYr=vf@A-CtWxg)2r-*tJ0gGrA{wM9g^EZ#XOC?aok>M)8WTP}~Uz)(uukIQZz z)lE6?toJ_0Uzw-t!UTM^JfglkU~=t@cxvvginNBFsr9_d#@=bXl}lh`dj89%zL^ab zeQVdCsEmRtT>tDQJ3vbdQcJ%}6C=YOrCkz^$Z^nv6!-~q?vcNqbdXBHJB!X`1yQGQ zI=xe2*IX6;gzgZ!mPG6J8=TsKS$>qnM@TjUd#v2Vc$>lw)eEkh|x61R)j=4k= zOnS%E3i{OY5I@Z3P$ytC-0V4D`W^M=`w+owJ-Uu;Hkz^3b?Lj#CX6h3Njc25^|q$U zqp#vY1Dj^scNmB7g}J?=2{QTGF6yDx=zeots>%a5ht%&v1@^F2;Pw;^)nh}>w(M!Y zrkwJYj-0Ec3UAh1X(hT#seak-izA+!Lw{`hIKrQs^qCY*0SK2=3B6h9B}h)k^#)() z3}JrO>|@PVrFDV_%DpJ9rsL|YuiL1ma`@z%+n0=Z9 z=SbhAlIFiTJpbOh>E+LQAFA^TvfX{30;G~46u|K?1<31y+9I1b*27bvTj!G~z!`jA ze43BLSv9?n?r$gBZ^$s>z*O`V!JNRo4FHy%dfky=HGPialH=pvyrzLII2hpPgJVWv~zEN%G940G(!$p~<&1 z4&I^ww#KMNre<8^QS38*=vs~nR{v`~4zG`1(iY3MDYuzuS}%^HdexT5!B6t}?_wF!S>d;Aau@Dbm+0}XeWG(^xt1HlP2KXRk2>O~7*Nn#(n&y3rg!DiV@553+oFeBi4_$WZ|h-fxV z#5RQQ4cswhet`lQkjh0*i_e|hKKAm(m8dh>w418DlbdxhmuJkzGPWA+50E}nfEfPC zZ(2dK{-znL^}fU^aYSF}WWo2#>8!8rsW7aJt$#c6mg&=e@j=5KyqOK@1oZjXhm4w( z&1te?+B>!p%+@2yrxu^td&(F6xV{Oz{)=oRzG>S}j)za%&IA~Fu?=rjd=?B5!{oP* z&D<)IxhM1KLPOc1jxPPGb@Ecz)jMSVZkuhXtFLl0HH(BLdyCvWU-s7Q3^#duJ|}_W zl;3gc6@PAP(W4H=U`&|ODg!*OT3`JsxV~hKK9=_QGE!ws#3g%9P+tJ%GUPq&3z^;oZZDOCF|5>WY~QX{q=H&ojB(+<-3PnJa4ZL8=07RUF()2IN&7?pDdVWQBP3T zDTICQ=YE+lhz_9uh9Aimc?nlo_sNvS-Sp9`)GGJBJG@pM#x62c(+p$VCl;?3cDmi& zQ-2`S$VR#HdDPBJ!d<(i^6t$XUgM?VxDpbQE@b zhuGwQ`>0dpoqR|+`hKY`d%4`JE2^7{zVO~UXljts>*O|oCcnbUmFP&c94sYXBW$&z6) zua1=TBo&DqjpIsQx8a(o}VH$hSuzS>KV90zBx_7H~(A^2KnA z5k`Nhy&J^Vq?XcYo(oca?U!g*vRW{VN&V0obfv(oU6PYnR1B_dy+c|MFLM~~yOf>; z1-R#mzq_q%ZoQPfhF%ksXbjIeGCQZT7D@r0XD~1CI28&)owF&Otwq&Wms>}5j4pjk zkvmf0GZH_#6ojV$YZI*>c1~VtUtmLdh`7C={rY@i3>H;7+5yYze@&M2cwzVYKve%b zd1kQ}?bv)bpLx>Vi`(DCHG9iXN>wQixGQldo^k{hD>O@7pAxLlDy8_N9f)T{r)iV8 zFH0|9*fcekd*52(d<_e;9Tc?L(X=bY-Xn>V0+hYu^S(b{M6HY-N4*)+86gB+dV;7K z2rpR-V!3Xe%d*j_s##bk#gQFKw!vq^hV|UDgsa0d3-tGQ9vILk zUfzdZco|<;4lN}p(KMdAlyJEAs&!+%z8N{4@k5>6* zOTA2E|8?>>uE=YV~jtQyPL9N!BvISnOTI3)(MTc_3haVEoxPI|Rw4 zb}M+cF{o>Ei0~BBT~c`Xj@6~hxC*tjjQg{`#J-brYUN9(Q1!OVi2Pa4B5$Fuj8#|k zg|kn$`6wCJv;$Mo%9$c-!DhjL@llrEeb?2h?yib(8YCIoeT-2-Lf(tvs+E4hjoFd@GfHUy(yPumt zr|%T;SoBzNT%1Y#dmg8*iGJl+!B2+kBQ|26^sD@WD(l9~&;*%Ia#GBNZr{9*ELB&p z4}Ma<@g*?)!F!t>^jAv?z>vGit*VsU)H(by?|h)%!}O>{;H#yn>?!&bqsWW22EgT= z(xP;^r7^qfnm3IiI)F-U!QkS0jqrE^byE}TnH>znd#U2ya&Qrz6}9&VM$)U*Cutpj zYZc4ZT{^#1I&`0$ z_8OWVg*Xx~D+(BjHrb->}>L=C=pvjt{`~dXN_6PeOrHdz-%K6y=r=4lrTGJf9Bqco4BZ& zOI%$L;TK<^avy~R2kQ<~0E5u(DgdlQFGS`oB20p5ns%GD=+5hv$tCN2cTqcR;t zzR)Lxa#-5izyFKTusg!!rSYLr7Bjlr*<8pdi|-y)18%i7LzQ9=?y2SY^!wn0yvh3c znXfQqRu|zpB3-EBVbk_c-PVt1UK2+1*F77KQ@SU6v!Hh%eL+)B&u$6K!B5Up2hFA{B&?}}cV z&@sA}?ebN8=PJ5#{epLe@=WV#l&w%K?f_b$OCQzf*r9%1b26nW?G*dQL-FeZ6hKT& zrRc+OKZosKs@D!ra9P!~$@gNg57 z!H1e#B2_Id$4jKgOuU~q*uWQ~VRsjY?Z?+8pK8r!#Jo}2+X(+CdR5$K{yVH-4ngpy z01u1gQX@+X0wdqK`ks>Z)EpWrN6bD;alGoeK74{JL$kqX7aQA!AfWL~q!=`%XM)^` zAtzyDq(W@oSL3hA`*&9(mP%Xi7>a3X*6@}{$IkbkuFj+YkHO8vCjJsRuDLEpi&Y){ zfScCv_}3L_T)~m_fq<+03iQ?U(10SV`T5}e^y*(kZ?0b&CtYaHO@5F}d~Qdt+_xMu zd=f2sf>DKOUZ&*w@D}<4(p|J5UyZj3SM6|~hePzfKl#}Mu`R`6d&CpPis%f%1@hVH zWJ5EX@5I0CXPm9EYi8s1cgnv$6nNo7KXu-d_GB>H65VCrWq5op`)=Hf+T+eA8W>{Z zz6EegHpjnJ93q;!4t2wU2a>TynF<&M$VE)lOeI@(JGsEh#$WYCs&dz+0Cd}91Lm*A z4}P{EvUN=y52hnmKvEKrqWLDgtc41uSL>qWc2@fbVXRy}rM(!88pOrtRhL z^RrJZP66&-{_Z}zRf1W}yVyD=7ma@K^CT6YRtgOM#WRk-@yyKE-yPwD0`qyOm^!}x zKEK!ivdIbgJ7M99GWng*LHg+YE8*k+uY|Fa7wUJ8sjGkB?}VPWm+tQbI1>M=S{vr+ z`jZj6-2(s%eQh0(8mev;uy7Uf+l|v=rZ}9!U;1=$#Zhz0%_bUUW?KeJkwb3p7py7uC7o2xL z6uLCKEAi-V9_!CW!5j1%@MFI1--S_?*|xiwe81CzyS1+ErkQs`Fre8j1uD9!*WRCN z8U*j+;&-72fQ*X^nBxV8plTYtXnsN--O2h5k>7>eg5fV5rCkVh=KqB3*0}|y0qV-4 z{M(D}D>eJyW>Nl6@^*Patr}d6KYB+`H3R^=D)b+mlif|z(){2sm2N8K)VW5xTbgMX z@^cl_o&v$(?K}Q6V9wv$IYdp;8G^wNzEG0@)eOK!jqC+3>yAJa&jR2=fb3-{J#DMqn7<`O89pOzhOT+Ku!Aucv0mol@Sb1hyWjF)PIly zFn?;()X4-;m(K6`38w$U{06jtuY(_CSp1&myWL_ydAY;jC@U{x>O!UYM>~6V^FS~M z_+#8n80!A5Ek;))BEa__AO-}|-PQfK4A!%x)^4^71MArD7~qf4hx@>hj{b0G5CEJH z@%{A>+WP~U3Zdp0dbZhnG5#eEnSO!)fz0fNKwdfR|KPOdr#F9h;$%w_*kzqbDG46q1bitwTGn%N)W3vLup@W0Eyy z0S*~3pmO{n__G0{UjQHvjDn^#UeGl5$8`3`boR$|_Q!Pg$8`3`boR$|_Q!Pg$8`3` zboR$|_Q!Pg$8`3`boR$|_Q!Pg$8`4pn(6F^X6Xp1A_7386R0qvDv#KJ)1a~z0XTt5 zTdL*BZP!|b0PRrJm@kNN@PC6L1jvJyEP3#cs*c*#YW>gcY`ZPxaAeo^RO$PFg0gksFsjMuzIk!uQ%M^Q7G8k%Lk<%tSP)(xjGo9f@Oq- zc2WF2HHCLy8yB)MIVYrpK*EJoq~)bxva+&5Dr(YlPRdG-Dr%BK;QR3MGP24tatcy% zD(Z^L>T-%gKQCdhIi$0Tx`pnUpN)YjP2r!t3JMC64pNXtAYEnT)YQ~uWaVY#<)uIj zDO8A$zhkhJ4@%@$4Z3g?4C%gWJ`k{}#{0MBUH_Wss!Fo5&dx5XyA*-tbrG-t zD%Ysxe@s_r1PrX>H)GW0<(1?VRODQwoSjvjrJU3hVN&4yl#_B+bW~Gyc9w_ByEy%- z?T7Wi(d+NEQmJwVYm`@jIXWsTDM_iqRh6YwoE70xs*cLaQnK=DN~&s(s!mQYMPVUl zn7RuB>Fo$k4|i`zSGbIaFWgmF=wIaQD#c9@&LFQ9sIwTX9_)sJI|>}Kke}aNrLI{vYDNzfNRuA8>0C1fIA4=6nmD^nNXFVkLDcB=0zJ2xlw;{Kob&eAY4GjpTl;;nlGU9?PHKk#=raC0`z<6Xc=gLpU$_mv~+*Z1+C?ObH1gep`$wAGBDDC0WFG# zmX4hs*aLdso;GLTbOgO`56UM!V&wYa{5r0{?X)b4ys;vtqiC7@xD1ARucRxUl2fkC zbKcp%zH5T%=uPImynGRi22i!{g;e`8N_~5D<*tiAX&U{kc z{Q2wFaW%t>?jg~4p4PMs%xz1kpSAV45|j1p)rY}(!VhO%x;=Y92V#0AIy&!N>p#_B z`1BrgkYWbE>q+vDN|z75>l_!+=CW`?t|*8q>fGQ?wiJ5|D|^p~>Qb7}y~%Sv1$0g3 z*Y@#_G9mg zxy93NiHRp?lrI^}WhEi~+zS%zwQuGenRt8Sq(GfK2lpW{PEI`^!`M=5r{cy-F|WA- zCB9$yT=*yXhZ}z;!~aKX0ZaK5@wN3}h9OH!+ewM|uQW&RZp~T_sz*Bk`aa_6-xoBH z$#Cqx5kzQ|>mxm%6g{QyWzCP;PAp4cDi3u};GumV?e7l1ImPuNWOlYV13q>8$g6Wc zR&yWD6pZ^TP8-^UO5uj&eLci)6U?@YmBTdTG3P+Pj%#l*a_8f?gB}8Vlg&;s1ioC+ z;}pyYlIrMzMV@)ZV%^1L)DxDsKG%^cCBo%T0y!{rFk-9MXK&a^^3Hk65-&Zwn)Q+g?nRSaynl$IcdL} z*p&S8mxoRip`|~qHs$J!s?ThN;YDvJX;s~h_IKxmE<;~_7^VR3b&%3j*N<`+K&S5r z&>^=R^gw#eK$n^bjg-%jS$_e##LASd_B{<<)pvLIQ+ONvp|s)qxuxZ1u5h~Ls=-#V zbUAM0QyJZ_Z5oer9uRAUJX4yFxgUA!i3jaVt8P;@U(&GG7?;}07R^@m2^Gk6y<`$b zUSvhr?}Hs+R=+|VIAObOXZ8AWV4pQd$pO5<{V0x$I>ZwjY9d63DV5bJcozGN6Z9iX z&JE<0D7sxj|8x&`_j=OH%!`oCp#0J7%aGCTsKKr9{=t^uq&j{9hjy$r!AeBn_C(G* z;`}-V$k+2YBSZ9R;MQ@fC|ZspaHeuwEVQR{H`_b%}D-)DWLAsbr7>96>%;zdbFwcfA=;$bo?F+urT@>9Wj> zy@E@RFPDH`Id)wc4%>+H-Q#wJLxx|j-`*#hr2bU&g4^PwAU-c-)0yiSo;B|$6Nv)4 zMp4_nbMA`!#*8l+(YLtky4>w@ib)85e(xzR*1S5@L69?9#Yz=>*Nt~d@0#cE1D(fi zgg2FQU3zUOo5pWZ_dCKv*vyINGuGuT+B-_`T4`;oLt zCdnC(As>-B37n;Z(#PI*#9XL{vVB`eGp>groi1j5dClb_Xx&v|V%j%vl<5=EXVnyV z+>h7#NRsL^rNRn_QM5+Qtp})E=9pqX+JTsolRp1A`0{D6+x#|;bX6-H_8MaXB- zHF4+q2;7hSm}_nfx(n_7cnRiIYq`@j!zd`XDloJG^*o9^b2J(PoehJ|W$Fv$HS>i+ z@8VBDPRzd-uT~BcjMGWM<`U2QaaeQaj@uia4D`^!udHS3! zPbJrkn&}gGY#N~+`dJ2x&|aH9$m$zC(j%=C>;3q=d2kBMQ2_r;-$gjOGY&oR#$nN1 z5b?>Wv$*f1t83K*-bLZrQ{$qSJ(5?p!gP0}a0_82QAchb$yC8>>kDA-&XGM`LY)rk zcPER82G^C~@ef4D&B36ciVirV53x#VTslFg#O8*uMdapti6xItdIq zTVW2Mz~|ZFCTY;mh{)vYN0C&z$t?=2(4>?$_A&m*;Hj#(=Mu-%I`or{_&7|RmU)lm z*}iC6U^xz)A?lOU(4g1hfL?RgT_CB=5D;0VDfV1QJ3Tho~3;m?KA}A~@ZcWtb zCkL%3Z&wUGk=DwSlo#s|s!KV})=WxUZ=P+Y0Md4R(fb&?x{vW@iA0pSg=R~o$3DH} z(U<%#i00+G@w1i0;#JWI5kIz8On_HIy00rchp4D4uHJ&+*vKQVjua7*h1IjaYxJW4 z$C)TVok3A()w4@O{NJt`PFJ2YOcM?~#k0_-cNxOA;G$dBbTs<5*5)DJJUKs(47@h` z_X30D!1xA>WcCjaB&`?ded2K&)zddlWzF}$_n-h#+aF4DMsv&TYB{1GTC5&9!xE$7 zn&jTXg}zfJB5LsZVB2J(l71{WUzDq{!vyTJr!pA<$BNG6h&})2a!MG+&(wT0c4t&W zON4C2#;sECH$nC$WV}!FJ6{dGe>r=GWEgJK*RGT;a@u>k5GreXvbGC>jMF=)&>|pn zn6^sroP3ounn&PW!o#fsJ_7nCVOZ`S7L?$nsK|Q)B0_}fyhf6#8Vr2i_%)IO9@ws) zKa>!KF1pnGb>nN($ieIFDN)ZI5@GM5wld|o33O$Y*2DMax5>h)6d;FB5R`oR;71yA zFDc)1j>|<~6NGHJ(wCuYFolE_*zz{Y@Q~uWYGP%F;4x^-# zTjmN{dDv|t_11L}2(n#98`~QzecxND>%Q(#H0t2g9ASPpo z&J5F38VaBXGXa7{mFD zf$_S<_u3HD7RVcw`rGXsZoFe}7+KzyiJ8yN9dqsWF`tZnoTxEwt0dtu{_;#*_-FLM zC&lCLl1M6y@Hq=x6L14{|r^`d@jZrkz))JldhDQrue8z~FYOl?Mgq4UUy zwPe2!8t*C_F2$~Qd-mR3`P`3tx7^e)s%XTpvgf%%_3dh&3pys>2w zk6t99{#0DA)gGl$hI+z9XBw&#=Q{UC%+l?UYOj*fonwq5%c>7F)+RWGpLl_euU;{`o<^1#@XC(gSBU8VWvVd)Us8bd?$gqa z)bUiYQzKWYzF=@b&tFC0e#uP-O+^26Ro*u`nSl@|*lhJ!=jgC)5OFPH+@p-U+NG!s+ei?&Tlluj# zZeI#;8&^WV&vJ)8>;ebZP^zcfVBK+Fu9H&HiJj(Ih2}BOs6`&)%jsq7Bk~>^a^$MQ z-nFQG&MZKUpAkWB{R+D12o$#>&Jl9xu=0}Sq13pIE7k`_)3~PH+4cqZR3|x3Z%p}c z5JLHawP5=VQ=LxXr!}CR7{<+Ha>kCJxP+}EUo$5tf;kD7>maO~Ev;&#YM z2VSVXrk_8eko#=dIbA&A!D9w}g_+~S zOe`8X*;R*OjpI`j_$?#>`>3&z8C`0JdOTM(c%JYwwfwEOSiERL2=}R085xtwWYwar zS7j=yThRIy6s{pvR79FDIAc9QkWYs=S5O}@DZ+YWyuaUKB4YX-Q4Yg`?M9bga1ggW zdP}RgKU!+oiTi+#jr~rK1xL zGshfsglswcfuDJp&??C{_GtZtPx*F_v^OFAz8d?mxJ*Uo3MXuGDYqy_h_}%bURGVY6d1l-*dp~&rk*Kfa zpl9d~!o3n!h3l!oIpfPKe&D`wiVz$oi@y?{J@bfI^~i4YbkNiJJ&pHcj>F@wEv~8* zu$)~y44Vp3XqjtixtQHk2OLabm4qxyVxxf z#M1G-IQucbE4h9jpbo{=psa0d#PqHcf}Q(nrZesAGECD|*X?ZR4y+L>gL`A1zjKza zT{FNs3Y||dg)$063N+Nm?hKrLBRjrs>hO-lizAiKdG$E5x4dP%#k+E4wsEIfhgh&p z6wGFYcAnLkeN_L*qkHb<$1XkQbHzj4&kB(Rh{}w)Re{8blVJ{vakfglk!rp-8&nDjslGnIY4|ng``7#r}_0%i1d}@-h zhmdBU?RnP_N7My*R?v(rWXycQ(F3~heWWFxg86JgXbJT*AmI6`#xPsEha;%`s{5@5 zk4uwsF9Ob~A^i))E<<@FYn`LHnZ`FO1dt53H7-vF*FG(5KRM6{M}lAXbB=dJ&a(~7 z+zSzxSuN92lvvb&ew<*bGNn?(Me8gpLnN0yxNE z%e^GJ+e!7rrE$mc4_j_4Xq7E&SJlxdG*|!EIjMZRdb8oo&xX}g&;V1k>%@*KgF#XQ z6S&nTSoj$Ta4}wR1&CFj;^Z9Q2u-vPENp?B%7U)FTkEL zxkUl8rp%b+qS*Qqjj;V%YTA$$=wdQd+0F3LSc`MAWK3?7w&8`NrKoWBrth7;Dfcuc zw#a>U1s{-SnoG8*r?33*Y|H(oM-p`DU|Zl5a%!45X0Hkdx4=#*E;=#I{w2rl4_non z_Bthx$mGTW`aEBj=GHFw29x_)-O1JiZ6PiK@^biKCx^Kl!J|t|H~A0Bvy;=`D|Z{O zlJmj{N96+G3fMe>uCpoPTJ{HxI8J+f#gK^?A>9-ptnLCXQ9rg@v%30NeZg{T40