diff options
Diffstat (limited to 'Thronefall_1_57/Decompile/Thronefall/WaveDescriptionUI.cs')
| -rw-r--r-- | Thronefall_1_57/Decompile/Thronefall/WaveDescriptionUI.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Thronefall_1_57/Decompile/Thronefall/WaveDescriptionUI.cs b/Thronefall_1_57/Decompile/Thronefall/WaveDescriptionUI.cs deleted file mode 100644 index 2749729..0000000 --- a/Thronefall_1_57/Decompile/Thronefall/WaveDescriptionUI.cs +++ /dev/null @@ -1,30 +0,0 @@ -using UnityEngine; - -public class WaveDescriptionUI : MonoBehaviour, DayNightCycle.IDaytimeSensitive -{ - public GameObject waveDescriptionPanel; - - private void Start() - { - DayNightCycle.Instance.RegisterDaytimeSensitiveObject(this); - waveDescriptionPanel.SetActive(DayNightCycle.Instance.CurrentTimestate == DayNightCycle.Timestate.Day); - } - - public void OnDawn_AfterSunrise() - { - waveDescriptionPanel.SetActive(value: true); - } - - public void OnDusk() - { - waveDescriptionPanel.SetActive(value: false); - } - - public void OnDawn_BeforeSunrise() - { - } - - public void OnDuskEarly() - { - } -} |
