LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/EclipseWeather.cs
2023-12-22 21:13:19 -05:00

10 lines
290 B
C#

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