using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using Gameplay.Helm;
using HarmonyLib;
using Opsive.Shared.Utility;
using VoidManager;
using VoidManager.MPModChecks;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("LookUp")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("LookUp")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("7b78e841-5b3e-453d-b99e-aa85fe9d3bdc")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace LookUp;
[HarmonyPatch(/*Could not decode attribute arguments.*/)]
internal class CustomFirstPersonCombatPatch
{
private static void Prefix(ref float value)
{
if (value < 180f)
{
value = 180f;
}
}
}
[HarmonyPatch(/*Could not decode attribute arguments.*/)]
internal class FirstPersonPatch
{
private static void Prefix(ref MinMaxFloat value)
{
//IL_000c: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
value = new MinMaxFloat(-89.999f, 89.999f);
}
}
internal static class MyPluginInfo
{
public const string PLUGIN_GUID = "id107.lookup";
public const string PLUGIN_NAME = "LookUp";
public const string PLUGIN_VERSION = "0.0.2";
}
[BepInPlugin("id107.lookup", "LookUp", "0.0.2")]
[BepInProcess("Void Crew.exe")]
public class Plugin : BaseUnityPlugin
{
public static Plugin Instance { get; private set; }
private void Awake()
{
Instance = this;
Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), "id107.lookup");
Log("LookUp loaded");
}
public void Log(string message)
{
((BaseUnityPlugin)this).Logger.LogInfo((object)message);
}
}
[HarmonyPatch(typeof(ShipExternalCamera), "OnShipExternalViewToggle")]
internal class ShipExternalCameraPatch
{
private static void Postfix(ShipExternalCamera __instance)
{
__instance.XRotationLimit = 89f;
}
}
public class VoidManagerPlugin : VoidPlugin
{
public override MultiplayerType MPType => (MultiplayerType)3;
public override string Author => "18107, Dragon";
public override string Description => "Gets rid of pesky camera limitations.";
}