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

@ -2,7 +2,7 @@
using ABI_RC.Core.Player;
using UnityEngine;
namespace NAK.Melons.AASBufferFix;
namespace NAK.AASBufferFix;
public class AASBufferHelper : MonoBehaviour
{

View file

@ -4,7 +4,7 @@ using ABI_RC.Core.Player;
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.AASBufferFix.HarmonyPatches;
namespace NAK.AASBufferFix.HarmonyPatches;
[HarmonyPatch]
internal class HarmonyPatches

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.AASBufferFix;
namespace NAK.AASBufferFix;
public class AASBufferFix : MelonMod
{

View file

@ -1,18 +1,18 @@
using MelonLoader;
using NAK.Melons.AASBufferFix.Properties;
using NAK.AASBufferFix.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.AASBufferFix))]
[assembly: AssemblyTitle(nameof(NAK.AASBufferFix))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.AASBufferFix))]
[assembly: AssemblyProduct(nameof(NAK.AASBufferFix))]
[assembly: MelonInfo(
typeof(NAK.Melons.AASBufferFix.AASBufferFix),
nameof(NAK.Melons.AASBufferFix),
typeof(NAK.AASBufferFix.AASBufferFix),
nameof(NAK.AASBufferFix),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/AASBufferFix"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
namespace NAK.Melons.AASBufferFix.Properties;
namespace NAK.AASBufferFix.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.5";

View file

@ -1,6 +1,6 @@
using UnityEngine;
namespace NAK.Melons.AASBufferFix;
namespace NAK.AASBufferFix;
public class Utils
{

View file

@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.Playables;
namespace NAK.Melons.BadAnimatorFix;
namespace NAK.BadAnimatorFix;
public class BadAnimatorFix : MonoBehaviour
{

View file

@ -2,7 +2,7 @@
using UnityEngine;
using UnityEngine.SceneManagement;
namespace NAK.Melons.BadAnimatorFix;
namespace NAK.BadAnimatorFix;
public static class BadAnimatorFixManager
{

View file

@ -4,7 +4,7 @@ using ABI_RC.Core.Player;
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.BadAnimatorFix.HarmonyPatches;
namespace NAK.BadAnimatorFix.HarmonyPatches;
internal static class AnimatorPatches
{

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.BadAnimatorFix;
namespace NAK.BadAnimatorFix;
public class BadAnimatorFixMod : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.BadAnimatorFix.Properties;
using NAK.BadAnimatorFix.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.BadAnimatorFix))]
[assembly: AssemblyTitle(nameof(NAK.BadAnimatorFix))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.BadAnimatorFix))]
[assembly: AssemblyProduct(nameof(NAK.BadAnimatorFix))]
[assembly: MelonInfo(
typeof(NAK.Melons.BadAnimatorFix.BadAnimatorFixMod),
nameof(NAK.Melons.BadAnimatorFix),
typeof(NAK.BadAnimatorFix.BadAnimatorFixMod),
nameof(NAK.BadAnimatorFix),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/BadAnimatorFix"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.BadAnimatorFix.Properties;
namespace NAK.BadAnimatorFix.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.0";

View file

@ -1,7 +1,7 @@
using System.Reflection;
using UnityEngine;
namespace NAK.Melons.Blackout;
namespace NAK.Blackout;
/*

View file

@ -5,7 +5,7 @@ using MelonLoader;
using System.Text;
using UnityEngine;
namespace NAK.Melons.Blackout;
namespace NAK.Blackout;
/*

View file

@ -3,7 +3,7 @@ using ABI_RC.Core.Savior;
using HarmonyLib;
using MelonLoader;
namespace NAK.Melons.Blackout.HarmonyPatches;
namespace NAK.Blackout.HarmonyPatches;
[HarmonyPatch]
internal class HarmonyPatches

View file

@ -2,7 +2,7 @@
using BTKUILib.UIObjects;
using System.Runtime.CompilerServices;
namespace NAK.Melons.Blackout;
namespace NAK.Blackout;
public static class BTKUIAddon
{

View file

@ -1,7 +1,7 @@
using System.Runtime.CompilerServices;
using UIExpansionKit.API;
namespace NAK.Melons.Blackout;
namespace NAK.Blackout;
public static class UIExpansionKitAddon
{
[MethodImpl(MethodImplOptions.NoInlining)]

View file

@ -2,7 +2,7 @@
using ABI_RC.Core.Savior;
using MelonLoader;
namespace NAK.Melons.Blackout;
namespace NAK.Blackout;
public class Blackout : MelonMod
{

View file

@ -1,4 +1,4 @@
using NAK.Melons.Blackout.Properties;
using NAK.Blackout.Properties;
using MelonLoader;
using System.Reflection;
@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.Blackout))]
[assembly: AssemblyTitle(nameof(NAK.Blackout))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.Blackout))]
[assembly: AssemblyProduct(nameof(NAK.Blackout))]
[assembly: MelonInfo(
typeof(NAK.Melons.Blackout.Blackout),
nameof(NAK.Melons.Blackout),
typeof(NAK.Blackout.Blackout),
nameof(NAK.Blackout),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/Blackout"
@ -23,7 +23,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonOptionalDependencies("UIExpansionKit", "BTKUILib")]
namespace NAK.Melons.Blackout.Properties;
namespace NAK.Blackout.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "2.0.0";

View file

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace NAK.Melons.Blackout {
namespace NAK.Blackout {
using System;

View file

@ -1,7 +1,7 @@
using ABI_RC.Core.Savior;
using HarmonyLib;
namespace NAK.Melons.ChatBoxExtensions.HarmonyPatches;
namespace NAK.ChatBoxExtensions.HarmonyPatches;
public class CVRInputManagerPatches
{

View file

@ -1,7 +1,7 @@
using ABI_RC.Core.Savior;
using UnityEngine;
namespace NAK.Melons.ChatBoxExtensions.InputModules;
namespace NAK.ChatBoxExtensions.InputModules;
internal class InputModuleChatBoxExtensions : CVRInputModule
{

View file

@ -1,7 +1,7 @@
using ABI_RC.Core.Player;
using ABI_RC.Core.Savior;
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
public class CommandBase
{

View file

@ -1,6 +1,6 @@
using Kafe.ChatBox;
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
internal class ChatBoxCommands : CommandBase
{

View file

@ -2,7 +2,7 @@
using ABI_RC.Core.Base;
using Kafe.ChatBox;
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
internal class ChilloutVRBaseCommands : CommandBase
{

View file

@ -1,4 +1,4 @@
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
internal class ChilloutVRInputCommands : CommandBase
{

View file

@ -1,4 +1,4 @@
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
public static class Commands {

View file

@ -1,6 +1,6 @@
using ml_prm;
namespace NAK.Melons.ChatBoxExtensions.Integrations;
namespace NAK.ChatBoxExtensions.Integrations;
internal class PlayerRagdollModCommands : CommandBase
{

View file

@ -1,7 +1,7 @@
using MelonLoader;
using NAK.Melons.ChatBoxExtensions.InputModules;
using NAK.ChatBoxExtensions.InputModules;
namespace NAK.Melons.ChatBoxExtensions;
namespace NAK.ChatBoxExtensions;
public class ChatBoxExtensions : MelonMod
{

View file

@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.ChatBoxExtensions))]
[assembly: AssemblyTitle(nameof(NAK.ChatBoxExtensions))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.ChatBoxExtensions))]
[assembly: AssemblyProduct(nameof(NAK.ChatBoxExtensions))]
[assembly: MelonInfo(
typeof(NAK.Melons.ChatBoxExtensions.ChatBoxExtensions),
nameof(NAK.Melons.ChatBoxExtensions),
typeof(NAK.ChatBoxExtensions.ChatBoxExtensions),
nameof(NAK.ChatBoxExtensions),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/ChatBoxExtensions"

View file

@ -3,7 +3,7 @@ using ABI_RC.Core.UI;
using cohtml;
using HarmonyLib;
namespace NAK.Melons.ClearHudNotifications.HarmonyPatches;
namespace NAK.ClearHudNotifications.HarmonyPatches;
internal static class CohtmlHudPatches
{

View file

@ -2,7 +2,7 @@
using MelonLoader;
using UnityEngine;
namespace NAK.Melons.ClearHudNotifications;
namespace NAK.ClearHudNotifications;
public class ClearHudNotifications : MelonMod
{

View file

@ -1,4 +1,4 @@
using NAK.Melons.ClearHudNotifications.Properties;
using NAK.ClearHudNotifications.Properties;
using MelonLoader;
using System.Reflection;
@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.ClearHudNotifications))]
[assembly: AssemblyTitle(nameof(NAK.ClearHudNotifications))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.ClearHudNotifications))]
[assembly: AssemblyProduct(nameof(NAK.ClearHudNotifications))]
[assembly: MelonInfo(
typeof(NAK.Melons.ClearHudNotifications.ClearHudNotifications),
nameof(NAK.Melons.ClearHudNotifications),
typeof(NAK.ClearHudNotifications.ClearHudNotifications),
nameof(NAK.ClearHudNotifications),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/UndoPropButton"
@ -23,7 +23,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.ClearHudNotifications.Properties;
namespace NAK.ClearHudNotifications.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.0";

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
{

View file

@ -4,7 +4,7 @@ using cohtml;
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.FuckMetrics;
namespace NAK.FuckMetrics;
public static class FuckMetrics
{

View file

@ -3,7 +3,7 @@ using ABI_RC.Core.IO;
using cohtml;
using HarmonyLib;
namespace NAK.Melons.FuckMetrics.HarmonyPatches;
namespace NAK.FuckMetrics.HarmonyPatches;
public static class CVR_MenuManagerPatches
{

View file

@ -2,7 +2,7 @@
using MelonLoader;
using System.Collections;
namespace NAK.Melons.FuckMetrics;
namespace NAK.FuckMetrics;
public class FuckMetricsMod : MelonMod
{

View file

@ -1,18 +1,18 @@
using MelonLoader;
using NAK.Melons.FuckMetrics.Properties;
using NAK.FuckMetrics.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.FuckMetrics))]
[assembly: AssemblyTitle(nameof(NAK.FuckMetrics))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.FuckMetrics))]
[assembly: AssemblyProduct(nameof(NAK.FuckMetrics))]
[assembly: MelonInfo(
typeof(NAK.Melons.FuckMetrics.FuckMetricsMod),
nameof(NAK.Melons.FuckMetrics),
typeof(NAK.FuckMetrics.FuckMetricsMod),
nameof(NAK.FuckMetrics),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/FuckMetrics"
@ -23,7 +23,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.FuckMetrics.Properties;
namespace NAK.FuckMetrics.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.4";

View file

@ -3,7 +3,7 @@ using HarmonyLib;
using RootMotion.FinalIK;
namespace NAK.Melons.FuckToes.HarmonyPatches;
namespace NAK.FuckToes.HarmonyPatches;
//yes im patching VRIK directly, cvr does not force calibration or mess with references, and leaves it to vrik to handle
class VRIKPatches

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.FuckToes;
namespace NAK.FuckToes;
public class FuckToesMod : MelonMod
{

View file

@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.FuckToes))]
[assembly: AssemblyTitle(nameof(NAK.FuckToes))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.FuckToes))]
[assembly: AssemblyProduct(nameof(NAK.FuckToes))]
[assembly: MelonInfo(
typeof(NAK.Melons.FuckToes.FuckToesMod),
nameof(NAK.Melons.FuckToes),
typeof(NAK.FuckToes.FuckToesMod),
nameof(NAK.FuckToes),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/FuckToes"

View file

@ -7,7 +7,7 @@ using Valve.VR;
//I legitimately threw this at ChatGPT to rewrite cause i couldn't be bothered.
namespace NAK.Melons.GestureLock
namespace NAK.GestureLock
{
public class GestureLockMod : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.GestureLock.Properties;
using NAK.GestureLock.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.GestureLock))]
[assembly: AssemblyTitle(nameof(NAK.GestureLock))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.GestureLock))]
[assembly: AssemblyProduct(nameof(NAK.GestureLock))]
[assembly: MelonInfo(
typeof(NAK.Melons.GestureLock.GestureLockMod),
nameof(NAK.Melons.GestureLock),
typeof(NAK.GestureLock.GestureLockMod),
nameof(NAK.GestureLock),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/GestureLock"
@ -21,7 +21,7 @@ using System.Reflection;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
namespace NAK.Melons.GestureLock.Properties;
namespace NAK.GestureLock.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "2.0.0";

View file

@ -2,7 +2,7 @@
using ABI_RC.Systems.MovementSystem;
using HarmonyLib;
namespace NAK.Melons.JumpPatch.HarmonyPatches;
namespace NAK.JumpPatch.HarmonyPatches;
class MovementSystemPatches
{

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.JumpPatch;
namespace NAK.JumpPatch;
public class JumpPatchMod : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.JumpPatch.Properties;
using NAK.JumpPatch.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.JumpPatch))]
[assembly: AssemblyTitle(nameof(NAK.JumpPatch))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.JumpPatch))]
[assembly: AssemblyProduct(nameof(NAK.JumpPatch))]
[assembly: MelonInfo(
typeof(NAK.Melons.JumpPatch.JumpPatchMod),
nameof(NAK.Melons.JumpPatch),
typeof(NAK.JumpPatch.JumpPatchMod),
nameof(NAK.JumpPatch),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/JumpPatch"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.JumpPatch.Properties;
namespace NAK.JumpPatch.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.0";

View file

@ -2,7 +2,7 @@
using MelonLoader;
using NAK.CCK.CustomComponents;
namespace NAK.Melons.CustomComponents;
namespace NAK.CustomComponents;
public class CustomComponents : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.CustomComponents.Properties;
using NAK.CustomComponents.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.CustomComponents))]
[assembly: AssemblyTitle(nameof(NAK.CustomComponents))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.CustomComponents))]
[assembly: AssemblyProduct(nameof(NAK.CustomComponents))]
[assembly: MelonInfo(
typeof(NAK.Melons.CustomComponents.CustomComponents),
nameof(NAK.Melons.CustomComponents),
typeof(NAK.CustomComponents.CustomComponents),
nameof(NAK.CustomComponents),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/UndoPropButton"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.CustomComponents.Properties;
namespace NAK.CustomComponents.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.0";

View file

@ -3,7 +3,7 @@ using ABI_RC.Core.Player;
using MelonLoader;
using UnityEngine;
namespace NAK.Melons.PathCamDisabler
namespace NAK.PathCamDisabler
{
public class PathCamDisablerMod : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using System.Reflection;
using NAK.Melons.PathCamDisabler.Properties;
using NAK.PathCamDisabler.Properties;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.PathCamDisabler))]
[assembly: AssemblyTitle(nameof(NAK.PathCamDisabler))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.PathCamDisabler))]
[assembly: AssemblyProduct(nameof(NAK.PathCamDisabler))]
[assembly: MelonInfo(
typeof(NAK.Melons.PathCamDisabler.PathCamDisablerMod),
nameof(NAK.Melons.PathCamDisabler),
typeof(NAK.PathCamDisabler.PathCamDisablerMod),
nameof(NAK.PathCamDisabler),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/PathCamDisabler"
@ -21,7 +21,7 @@ using NAK.Melons.PathCamDisabler.Properties;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
namespace NAK.Melons.PathCamDisabler.Properties;
namespace NAK.PathCamDisabler.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.1";

View file

@ -3,9 +3,9 @@ using ABI_RC.Core.Player;
using ABI_RC.Core.Savior;
using HarmonyLib;
using UnityEngine;
using NAK.Melons.PickupPushPull.InputModules;
using NAK.PickupPushPull.InputModules;
namespace NAK.Melons.PickupPushPull.HarmonyPatches;
namespace NAK.PickupPushPull.HarmonyPatches;
[HarmonyPatch]
internal class HarmonyPatches

View file

@ -1,7 +1,7 @@
using ABI_RC.Core.Savior;
using System.Reflection;
namespace NAK.Melons.PickupPushPull.InputModules.Info;
namespace NAK.PickupPushPull.InputModules.Info;
// Stolen from my scrapped Enhanced Input mod
internal class EI_SteamVR_Info

View file

@ -3,13 +3,13 @@ using ABI_RC.Core;
using ABI_RC.Core.InteractionSystem;
using ABI_RC.Core.Player;
using ABI_RC.Core.Savior;
using NAK.Melons.PickupPushPull.InputModules.Info;
using NAK.PickupPushPull.InputModules.Info;
using System.Reflection;
using UnityEngine;
using UnityEngine.Events;
using Valve.VR;
namespace NAK.Melons.PickupPushPull.InputModules;
namespace NAK.PickupPushPull.InputModules;
public class PickupPushPull_Module : CVRInputModule
{

View file

@ -5,9 +5,9 @@ using HarmonyLib;
using MelonLoader;
using UnityEngine;
using Valve.VR;
using NAK.Melons.PickupPushPull.InputModules;
using NAK.PickupPushPull.InputModules;
namespace NAK.Melons.PickupPushPull;
namespace NAK.PickupPushPull;
public class PickupPushPull : MelonMod
{

View file

@ -1,4 +1,4 @@
using NAK.Melons.PickupPushPull.Properties;
using NAK.PickupPushPull.Properties;
using MelonLoader;
using System.Reflection;
@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.PickupPushPull))]
[assembly: AssemblyTitle(nameof(NAK.PickupPushPull))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.PickupPushPull))]
[assembly: AssemblyProduct(nameof(NAK.PickupPushPull))]
[assembly: MelonInfo(
typeof(NAK.Melons.PickupPushPull.PickupPushPull),
nameof(NAK.Melons.PickupPushPull),
typeof(NAK.PickupPushPull.PickupPushPull),
nameof(NAK.PickupPushPull),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/PickupPushPull"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
namespace NAK.Melons.PickupPushPull.Properties;
namespace NAK.PickupPushPull.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "3.0.2";

View file

@ -2,7 +2,7 @@
using HarmonyLib;
using UnityEngine;
namespace NAK.Melons.PortableCameraAdditions.HarmonyPatches;
namespace NAK.PortableCameraAdditions.HarmonyPatches;
[HarmonyPatch]
internal class PortableCameraPatches

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.PortableCameraAdditions;
namespace NAK.PortableCameraAdditions;
public class PortableCameraAdditions : MelonMod
{

View file

@ -1,18 +1,18 @@
using MelonLoader;
using NAK.Melons.PortableCameraAdditions.Properties;
using NAK.PortableCameraAdditions.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.PortableCameraAdditions))]
[assembly: AssemblyTitle(nameof(NAK.PortableCameraAdditions))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.PortableCameraAdditions))]
[assembly: AssemblyProduct(nameof(NAK.PortableCameraAdditions))]
[assembly: MelonInfo(
typeof(NAK.Melons.PortableCameraAdditions.PortableCameraAdditions),
nameof(NAK.Melons.PortableCameraAdditions),
typeof(NAK.PortableCameraAdditions.PortableCameraAdditions),
nameof(NAK.PortableCameraAdditions),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/PortableCameraAdditions"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
namespace NAK.Melons.PortableCameraAdditions.Properties;
namespace NAK.PortableCameraAdditions.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.2";

View file

@ -1,7 +1,7 @@
using ABI_RC.Systems.Camera;
using UnityEngine;
namespace NAK.Melons.PortableCameraAdditions.VisualMods;
namespace NAK.PortableCameraAdditions.VisualMods;
public class CameraAdditions
{

View file

@ -8,7 +8,7 @@ using MelonLoader;
using System.Reflection;
using UnityEngine;
namespace NAK.Melons.PropUndoButton;
namespace NAK.PropUndoButton;
// https://pixabay.com/sound-effects/selection-sounds-73225/

View file

@ -1,17 +1,17 @@
using NAK.Melons.PropUndoButton.Properties;
using NAK.PropUndoButton.Properties;
using MelonLoader;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.PropUndoButton))]
[assembly: AssemblyTitle(nameof(NAK.PropUndoButton))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.PropUndoButton))]
[assembly: AssemblyProduct(nameof(NAK.PropUndoButton))]
[assembly: MelonInfo(
typeof(NAK.Melons.PropUndoButton.PropUndoButton),
nameof(NAK.Melons.PropUndoButton),
typeof(NAK.PropUndoButton.PropUndoButton),
nameof(NAK.PropUndoButton),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/UndoPropButton"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.PropUndoButton.Properties;
namespace NAK.PropUndoButton.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.1";

View file

@ -2,7 +2,7 @@
using HarmonyLib;
using Valve.VR;
namespace NAK.Melons.TrackedControllerFix.HarmonyPatches;
namespace NAK.TrackedControllerFix.HarmonyPatches;
internal class PlayerSetupPatches
{

View file

@ -1,6 +1,6 @@
using MelonLoader;
namespace NAK.Melons.TrackedControllerFix;
namespace NAK.TrackedControllerFix;
public class TrackedControllerFixMod : MelonMod
{

View file

@ -1,17 +1,17 @@
using MelonLoader;
using NAK.Melons.TrackedControllerFix.Properties;
using NAK.TrackedControllerFix.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.TrackedControllerFix))]
[assembly: AssemblyTitle(nameof(NAK.TrackedControllerFix))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.TrackedControllerFix))]
[assembly: AssemblyProduct(nameof(NAK.TrackedControllerFix))]
[assembly: MelonInfo(
typeof(NAK.Melons.TrackedControllerFix.TrackedControllerFixMod),
nameof(NAK.Melons.TrackedControllerFix),
typeof(NAK.TrackedControllerFix.TrackedControllerFixMod),
nameof(NAK.TrackedControllerFix),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/TrackedControllerFix"
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll]
namespace NAK.Melons.TrackedControllerFix.Properties;
namespace NAK.TrackedControllerFix.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.2";

View file

@ -1,7 +1,7 @@
using UnityEngine;
using Valve.VR;
namespace NAK.Melons.TrackedControllerFix;
namespace NAK.TrackedControllerFix;
public class TrackedControllerFix : MonoBehaviour
{