remove melons

This commit is contained in:
NotAKidoS 2023-04-26 13:58:09 -05:00
parent 56c901345a
commit b33e15377f
74 changed files with 156 additions and 156 deletions

View file

@ -1,10 +1,10 @@
using NAK.Melons.DesktopVRSwitch.Patches;
using NAK.DesktopVRSwitch.Patches;
using System.Collections;
using UnityEngine;
using UnityEngine.XR;
using Valve.VR;
namespace NAK.Melons.DesktopVRSwitch;
namespace NAK.DesktopVRSwitch;
public class DesktopVRSwitch : MonoBehaviour
{

View file

@ -6,10 +6,10 @@ using ABI_RC.Systems.IK;
using ABI_RC.Systems.IK.TrackingModules;
using ABI_RC.Systems.MovementSystem;
using HarmonyLib;
using NAK.Melons.DesktopVRSwitch.Patches;
using NAK.DesktopVRSwitch.Patches;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch.HarmonyPatches;
namespace NAK.DesktopVRSwitch.HarmonyPatches;
internal class PlayerSetupPatches
{

View file

@ -13,7 +13,7 @@
components that may or may not change between builds without breaking the rest of the mod.
**/
namespace NAK.Melons.DesktopVRSwitch;
namespace NAK.DesktopVRSwitch;
public class DesktopVRSwitchMod : MelonMod
{

View file

@ -3,7 +3,7 @@ using UnityEngine;
//Thanks Ben! I was scared of transpiler so I reworked a bit...
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class CVRPickupObjectTracker : MonoBehaviour
{

View file

@ -1,7 +1,7 @@
using ABI_RC.Core.Util.Object_Behaviour;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class CameraFacingObjectTracker : MonoBehaviour
{

View file

@ -4,7 +4,7 @@ using HarmonyLib;
using System.Reflection;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class IKSystemTracker : MonoBehaviour
{

View file

@ -1,7 +1,7 @@
using ABI_RC.Systems.MovementSystem;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class MovementSystemTracker : MonoBehaviour
{

View file

@ -8,7 +8,7 @@ using UnityEngine.AzureSky;
using UnityEngine.Rendering.PostProcessing;
using Object = UnityEngine.Object;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
internal class ReferenceCameraPatch
{

View file

@ -2,7 +2,7 @@
using UnityEngine;
using UnityEngine.Events;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class VRModeSwitchTracker
{

View file

@ -2,7 +2,7 @@
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch.Patches;
namespace NAK.DesktopVRSwitch.Patches;
public class VRTrackerManagerTracker : MonoBehaviour
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.DesktopVRSwitch.Properties;
using NAK.DesktopVRSwitch.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.DesktopVRSwitch))]
[assembly: AssemblyTitle(nameof(NAK.DesktopVRSwitch))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.DesktopVRSwitch))]
[assembly: AssemblyProduct(nameof(NAK.DesktopVRSwitch))]
[assembly: MelonInfo(
typeof(NAK.Melons.DesktopVRSwitch.DesktopVRSwitchMod),
nameof(NAK.Melons.DesktopVRSwitch),
typeof(NAK.DesktopVRSwitch.DesktopVRSwitchMod),
nameof(NAK.DesktopVRSwitch),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/DesktopVRSwitch"
@ -23,7 +23,7 @@ using System.Reflection;
[assembly: MelonColor(ConsoleColor.DarkCyan)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.DesktopVRSwitch.Properties;
namespace NAK.DesktopVRSwitch.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "4.3.5";

View file

@ -8,7 +8,7 @@ using ABI_RC.Systems.Camera;
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.DesktopVRSwitch;
namespace NAK.DesktopVRSwitch;
internal class TryCatchHell
{