mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 12:37:08 +01:00
merged mit noah und juilius
This commit is contained in:
42
Assets/Scripts/TimeSwitchBtn.cs
Normal file
42
Assets/Scripts/TimeSwitchBtn.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class TimeSwitchBtn: Interactable
|
||||
{
|
||||
public GameObject GameManager;
|
||||
public bool dark;
|
||||
|
||||
|
||||
public override string GetDescription()
|
||||
{
|
||||
if (dark)
|
||||
{
|
||||
|
||||
return "Press [E] to skip to <color=red>night</color>.";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
return "Press [E] to skip to <color=green>day</color>.";
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public override void Interact()
|
||||
{
|
||||
|
||||
|
||||
if (dark)
|
||||
{
|
||||
GameManager.GetComponent<EventLog>().CreateEvent("Tag!");
|
||||
GameManager.GetComponent<TimeManager>().secondsOfDay = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
GameManager.GetComponent<EventLog>().CreateEvent("Nacht!");
|
||||
GameManager.GetComponent<TimeManager>().secondsOfDay = 30000;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user