You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB
C#

using System;
using Unity.Netcode;
using UnityEngine;
namespace Unity.BossRoom.Gameplay.GameplayObjects
{
/// <summary>
/// MonoBehaviour containing only one NetworkVariableInt which represents this object's health.
/// </summary>
public class NetworkHealthState : NetworkBehaviour
{
[HideInInspector]
public NetworkVariable<int> HitPoints = new NetworkVariable<int>();
// public subscribable event to be invoked when HP has been fully depleted
public event Action HitPointsDepleted;
// public subscribable event to be invoked when HP has been replenished
public event Action HitPointsReplenished;
void OnEnable()
{
HitPoints.OnValueChanged += HitPointsChanged;
}
void OnDisable()
{
HitPoints.OnValueChanged -= HitPointsChanged;
}
void HitPointsChanged(int previousValue, int newValue)
{
if (previousValue > 0 && newValue <= 0)
{
// newly reached 0 HP
HitPointsDepleted?.Invoke();
}
else if (previousValue <= 0 && newValue > 0)
{
// newly revived
HitPointsReplenished?.Invoke();
}
}
}
}