mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
44 lines
694 B
C#
44 lines
694 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using SanAndreasUnity.Behaviours.World;
|
|
|
|
namespace SanAndreasUnity.UI {
|
|
|
|
public class DayTimeWindow : PauseMenuWindow {
|
|
|
|
|
|
|
|
DayTimeWindow() {
|
|
|
|
// set default parameters
|
|
|
|
this.windowName = "DayTime";
|
|
|
|
}
|
|
|
|
void Start () {
|
|
|
|
this.RegisterButtonInPauseMenu ();
|
|
|
|
// adjust rect
|
|
this.windowRect = new Rect(10, Screen.height - 220, 250, 200);
|
|
}
|
|
|
|
|
|
protected override void OnWindowGUI ()
|
|
{
|
|
|
|
GUILayout.Label("Set Time:");
|
|
|
|
foreach (var en in System.Enum.GetValues(typeof(TimeState)))
|
|
{
|
|
TimeState e = (TimeState)en;
|
|
if (GUILayout.Button(e.ToString()))
|
|
WorldController.SetTime(e);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|