1
0
mirror of https://github.com/misternebula/quantum-space-buddies.git synced 2025-02-19 12:40:56 +00:00

32 lines
1.0 KiB
C#
Raw Normal View History

using HarmonyLib;
2022-04-05 23:18:42 -07:00
using QSB.EchoesOfTheEye.GrappleTotemSync.Messages;
using QSB.EchoesOfTheEye.GrappleTotemSync.WorldObjects;
using QSB.EchoesOfTheEye.LightSensorSync.WorldObjects;
2022-04-05 23:18:42 -07:00
using QSB.Messaging;
using QSB.Patches;
using QSB.WorldSync;
namespace QSB.EchoesOfTheEye.GrappleTotemSync.Patches;
public class GrappleTotemPatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
[HarmonyPrefix]
[HarmonyPatch(typeof(LanternZoomPoint), nameof(LanternZoomPoint.OnDetectLight))]
private static bool OnDetectLight(LanternZoomPoint __instance) =>
!QSBWorldSync.AllObjectsReady ||
2022-05-26 21:23:05 -07:00
__instance._lightSensor.GetWorldObject<QSBLightSensor>().LocallyIlluminated;
2022-04-05 23:18:42 -07:00
[HarmonyPostfix]
[HarmonyPatch(typeof(LanternZoomPoint), nameof(LanternZoomPoint.StartZoomIn))]
private static void StartZoomIn(LanternZoomPoint __instance)
{
if (__instance._totemAnimator != null && QSBWorldSync.AllObjectsReady)
{
__instance.GetWorldObject<QSBGrappleTotem>()
.SendMessage(new GrappleAnimateMessage());
}
}
}