mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-16 07:10:35 +00:00
Merge branch 'dev' into eote-ghost-ai-multiple-players
This commit is contained in:
commit
26c040367c
@ -36,7 +36,7 @@ internal class ItemRemotePatches : QSBPatch
|
||||
{
|
||||
__instance._lanternController.enabled = true;
|
||||
__instance._lanternController.SetDetectorScaleCompensation(__instance._lanternController.transform.lossyScale);
|
||||
// __instance._lanternController.SetHeldByPlayer(true);
|
||||
__instance._lanternController.SetHeldByPlayer(true);
|
||||
// Locator.GetPlayerController().SetDreamLantern(__instance);
|
||||
}
|
||||
|
||||
@ -127,7 +127,7 @@ internal class ItemRemotePatches : QSBPatch
|
||||
if (__instance._lanternController != null)
|
||||
{
|
||||
__instance._lanternController.SetDetectorScaleCompensation(__instance._lanternController.transform.lossyScale);
|
||||
// __instance._lanternController.SetHeldByPlayer(false);
|
||||
__instance._lanternController.SetHeldByPlayer(false);
|
||||
__instance._lanternController.enabled = __instance._lanternController.IsLit();
|
||||
// Locator.GetPlayerController().SetDreamLantern(null);
|
||||
}
|
||||
@ -195,7 +195,7 @@ internal class ItemRemotePatches : QSBPatch
|
||||
{
|
||||
__instance._lanternController.SetDetectorScaleCompensation(__instance._lanternController.transform.lossyScale);
|
||||
__instance._lanternController.SetSocketed(true);
|
||||
// __instance._lanternController.SetHeldByPlayer(false);
|
||||
__instance._lanternController.SetHeldByPlayer(false);
|
||||
__instance._lanternController.enabled = __instance._lanternController.IsLit();
|
||||
// Locator.GetPlayerController().SetDreamLantern(null);
|
||||
}
|
||||
|
@ -81,6 +81,12 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
||||
return;
|
||||
}
|
||||
|
||||
DrawGui();
|
||||
DrawWorldObjectLabels();
|
||||
}
|
||||
|
||||
private static void DrawGui()
|
||||
{
|
||||
guiGUIStyle.normal.textColor = Color.white;
|
||||
GUI.contentColor = Color.white;
|
||||
|
||||
@ -89,12 +95,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
||||
column3Offset = 10f;
|
||||
column4Offset = 10f;
|
||||
|
||||
DrawGui();
|
||||
DrawWorldObjectLabels();
|
||||
}
|
||||
|
||||
private static void DrawGui()
|
||||
{
|
||||
#region Column1 - Server data
|
||||
|
||||
WriteLine(1, $"FPS : {Mathf.Round(1f / Time.smoothDeltaTime)}");
|
||||
@ -271,11 +271,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
||||
|
||||
foreach (var obj in QSBWorldSync.GetWorldObjects())
|
||||
{
|
||||
if (obj.AttachedObject == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (obj.ShouldDisplayDebug())
|
||||
{
|
||||
DrawLabel(obj.AttachedObject.transform, obj.ReturnLabel());
|
||||
@ -294,11 +289,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
||||
|
||||
foreach (var obj in QSBWorldSync.GetWorldObjects())
|
||||
{
|
||||
if (obj.AttachedObject == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (obj.ShouldDisplayDebug())
|
||||
{
|
||||
obj.DisplayLines();
|
||||
|
Loading…
Reference in New Issue
Block a user