using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Logging;
using Gameplay.Helm;
using HarmonyLib;
using Microsoft.CodeAnalysis;
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: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyCompany("LookUp")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Removes pesky camera limitations. Client Side.")]
[assembly: AssemblyFileVersion("1.0.5.0")]
[assembly: AssemblyInformationalVersion("1.0.5+4794a399ec9c1b7c2f7a720ed79128391a91d4cf")]
[assembly: AssemblyProduct("LookUp")]
[assembly: AssemblyTitle("Removes pesky camera limitations.")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.5.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
internal sealed class RefSafetyRulesAttribute : Attribute
{
public readonly int Version;
public RefSafetyRulesAttribute(int P_0)
{
Version = P_0;
}
}
}
namespace LookUp
{
[BepInPlugin("18107.LookUp", "LookUp", "1.0.5")]
[BepInProcess("Void Crew.exe")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class BepinPlugin : BaseUnityPlugin
{
internal static ManualLogSource Log;
public void Awake()
{
Log = ((BaseUnityPlugin)this).Logger;
Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), "18107.LookUp");
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin 18107.LookUp is loaded!");
}
}
[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 FirstPersonMaxPitchPatch
{
private static void Prefix(ref float value)
{
value = 89.999f;
}
}
[HarmonyPatch(/*Could not decode attribute arguments.*/)]
internal class FirstPersonMinPitchPatch
{
private static void Prefix(ref float value)
{
value = -89.999f;
}
}
public class MyPluginInfo
{
public const string PLUGIN_GUID = "18107.LookUp";
public const string PLUGIN_NAME = "LookUp";
public const string USERS_PLUGIN_NAME = "Look Up";
public const string PLUGIN_VERSION = "1.0.5";
public const string PLUGIN_DESCRIPTION = "Removes pesky camera limitations.";
public const string PLUGIN_ORIGINAL_AUTHOR = "18107";
public const string PLUGIN_AUTHORS = "18107, Dragon";
public const string PLUGIN_THUNDERSTORE_ID = "NihilityShift/Look_Up";
}
[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)8;
public override string Author => "18107, Dragon";
public override string Description => "Gets rid of pesky camera limitations.";
public override string ThunderstoreID => "NihilityShift/Look_Up";
}
}