Unity面板上显示系统时间并且实时显示

一、在场景中添加一个Text文本
二、创建一个脚本BaseDisplayInfo
三、将该脚本添加到场景的空物体上,然后将该Text文本拖拽到脚本的TxtCurrentTime位置
四、代码如下:
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

//Unity3D获取系统时间并且实时显示
public class BaseDisplayInfo : MonoBehaviour {

//系统当前时间
public Text TxtCurrentTime;

// Update is called once per frame
void Update ()
{
//获取系统当前时间
DateTime NowTime = DateTime.Now.ToLocalTime();
TxtCurrentTime.text = NowTime.ToString(“yyyy-MM-dd HH:mm:ss”);
}

}

你可能感兴趣的:(Unity面板上显示系统时间并且实时显示)