This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Frontec/Assets/Scripts/SJM/DayManager.cs
jmaniuvc 2936c48466 Frontec
2025-02-24 12:12:52 +09:00

15 lines
259 B
C#

using UnityEngine;
using UnityEngine.UI;
public class DayManager : MonoBehaviour
{
public string toDay;
public Text day;
void Start()
{
toDay = System.DateTime.Now.ToString("yyyy-MM-dd");
day.text = toDay.ToString();
}
}