mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 00:19:27 +00:00
35 lines
755 B
C#
35 lines
755 B
C#
|
using QSB.HUD.Messages;
|
|||
|
using QSB.Messaging;
|
|||
|
using QSB.Utility;
|
|||
|
|
|||
|
namespace QSB.HUD;
|
|||
|
|
|||
|
public class PlanetTrigger : SectoredMonoBehaviour
|
|||
|
{
|
|||
|
public HUDIcon Icon;
|
|||
|
|
|||
|
public override void OnSectorOccupantAdded(SectorDetector detector)
|
|||
|
{
|
|||
|
if (detector.GetOccupantType() != DynamicOccupant.Player)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
MultiplayerHUDManager.HUDIconStack.Push(Icon);
|
|||
|
var top = MultiplayerHUDManager.HUDIconStack.Peek();
|
|||
|
new PlanetMessage(top).Send();
|
|||
|
}
|
|||
|
|
|||
|
public override void OnSectorOccupantRemoved(SectorDetector detector)
|
|||
|
{
|
|||
|
if (detector.GetOccupantType() != DynamicOccupant.Player)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
MultiplayerHUDManager.HUDIconStack.Remove(Icon);
|
|||
|
var top = MultiplayerHUDManager.HUDIconStack.Peek();
|
|||
|
new PlanetMessage(top).Send();
|
|||
|
}
|
|||
|
}
|