using System.Collections.Generic; using UnityEngine; public class TimerSoundExecute : MonoBehaviour { [SerializeField] private float executeTimeInSeconds; [SerializeField] private string soundName; [SerializeField] private List weathers = new List(); [SerializeField] private List timeOfDays = new List(); private GameWeatherManager _gameWeatherManager; private float actualTime; }