Fully working Replay in Observation Scene

This commit is contained in:
Thorbjoern
2025-05-26 20:31:19 +02:00
parent c304bc0e10
commit f47331ef81
3 changed files with 4048 additions and 192 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ public class DateSelector : MonoBehaviour
public void SetYear(int yearIndex)
{
selectedYear = yearIndex; // Achtung: ggf. +Offset je nach Dropdown-Inhalt
selectedYear = yearIndex + 2025; // Achtung: ggf. +Offset je nach Dropdown-Inhalt
}
public void SetMonth(int monthIndex)
@@ -33,7 +33,7 @@ public class DateSelector : MonoBehaviour
public void SetMinute(int minuteIndex)
{
selectedMinute = minuteIndex; // 059
selectedMinute = minuteIndex * 5; // 059
}
public DateTime selectedDateTime()
{