unity 获取系统时间
时间: 2023-09-25 17:12:18 浏览: 120
获取系统时间
在Unity中,可以使用System.DateTime.Now来获取当前系统时间。例如:
```csharp
using System;
public class Example : MonoBehaviour
{
void Start()
{
DateTime now = System.DateTime.Now;
Debug.Log("当前时间:" + now.ToString());
}
}
```
这将输出当前时间的字符串表示形式,例如“2021/5/14 10:23:30”。您可以根据需要使用DateTime的不同方法和属性来格式化时间。
阅读全文