NAK namespace prefix, remove Melons

This commit is contained in:
NotAKidoS 2023-04-25 15:13:21 -05:00
parent a468487850
commit f1d6d247db
10 changed files with 18 additions and 22 deletions

View file

@ -8,7 +8,7 @@ using RootMotion.FinalIK;
using UnityEngine;
using UnityEngine.Events;
namespace NAK.Melons.DesktopVRIK;
namespace NAK.DesktopVRIK;
internal class DesktopVRIKSystem : MonoBehaviour
{

View file

@ -24,7 +24,7 @@ using ABI.CCK.Components;
**/
namespace NAK.Melons.DesktopVRIK.HarmonyPatches;
namespace NAK.DesktopVRIK.HarmonyPatches;
class PlayerSetupPatches
{

View file

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

View file

@ -1,7 +1,7 @@
using MelonLoader;
using UnityEngine;
namespace NAK.Melons.DesktopVRIK;
namespace NAK.DesktopVRIK;
public class DesktopVRIKMod : MelonMod
{

View file

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

View file

@ -1,7 +1,7 @@
using RootMotion.FinalIK;
using UnityEngine;
namespace NAK.Melons.DesktopVRIK;
namespace NAK.DesktopVRIK;
public static class VRIKUtils
{

View file

@ -2,7 +2,6 @@
using NAK.MenuScalePatch.Properties;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]

View file

@ -9,7 +9,7 @@ using UnityEngine;
using UnityEngine.AzureSky;
using UnityEngine.Rendering.PostProcessing;
namespace ThirdPerson;
namespace NAK.ThirdPerson;
internal static class CameraLogic
{

View file

@ -1,12 +1,9 @@
using ABI.CCK.Components;
using ABI_RC.Core.InteractionSystem;
using ABI_RC.Core.Player;
using MelonLoader;
using System.Linq;
using System.Reflection;
using static ThirdPerson.CameraLogic;
using static NAK.ThirdPerson.CameraLogic;
namespace ThirdPerson;
namespace NAK.ThirdPerson;
internal static class Patches
{

View file

@ -2,15 +2,15 @@
using System;
using System.Reflection;
using UnityEngine;
using static ThirdPerson.CameraLogic;
using BuildInfo = ThirdPerson.BuildInfo;
using static NAK.ThirdPerson.CameraLogic;
using BuildInfo = NAK.ThirdPerson.BuildInfo;
[assembly: AssemblyCopyright("Created by " + BuildInfo.Author)]
[assembly: MelonInfo(typeof(ThirdPerson.ThirdPerson), BuildInfo.Name, BuildInfo.Version, BuildInfo.Author)]
[assembly: MelonInfo(typeof(NAK.ThirdPerson.ThirdPerson), BuildInfo.Name, BuildInfo.Version, BuildInfo.Author)]
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonColor(ConsoleColor.DarkMagenta)]
namespace ThirdPerson;
namespace NAK.ThirdPerson;
public static class BuildInfo
{