Time question

Hi guys,
how can I display the real time for example ( 02.34pm ) in the scene?

Thanks,
nik

You want the DateTime structure. Specifically, something like:

DateTime now = DateTime.Now;

Keep in mind, there are many ways to format the output…

Are you sure?
There’s no sense in “DateTime now = DateTime.Now;” I’ve to write a class DateTime first !
But my question is::
Is there any function in Unity as TIme.deltaTime that can display me the real time ?

Yes

No, you don’t. DateTime is a structure that’s part of the .NET (and Mono) System namespace.

DateTime

Yes, there is, and it’s in my previous answer.

Sorry man, you’re right…Thank you