mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-26 21:20:45 +00:00
35 lines
765 B
C#
35 lines
765 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.PeekFront();
|
|
new PlanetMessage(top).Send();
|
|
}
|
|
|
|
public override void OnSectorOccupantRemoved(SectorDetector detector)
|
|
{
|
|
if (detector.GetOccupantType() != DynamicOccupant.Player)
|
|
{
|
|
return;
|
|
}
|
|
|
|
MultiplayerHUDManager.HUDIconStack.Remove(Icon);
|
|
var top = MultiplayerHUDManager.HUDIconStack.PeekFront();
|
|
new PlanetMessage(top).Send();
|
|
}
|
|
}
|