LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/EclipseWeather.cs
2023-12-22 18:30:14 -05:00

10 lines
280 B
C#

using UnityEngine;
public class EclipseWeather : MonoBehaviour
{
private void OnEnable()
{
RoundManager.Instance.minOutsideEnemiesToSpawn = TimeOfDay.Instance.currentWeatherVariable;
RoundManager.Instance.minEnemiesToSpawn = TimeOfDay.Instance.currentWeatherVariable;
}
}