Fully working Replay in Observation Scene
This commit is contained in:
@@ -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; // 0–59
|
||||
selectedMinute = minuteIndex * 5; // 0–59
|
||||
}
|
||||
public DateTime selectedDateTime()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user