Answers for "date time unity"

C#
2

time.time unity

/*The time at the beginning of this frame (Read Only). This is the time in
  seconds since the start of the game.

  Time.time is the amount of time in seconds that the application has been
  running for. It is read-only.

  The application receives the current Time.time at the beginning of each frame,
  with the value increasing per frame. A time call per frame receives the same
  value. When called from FixedUpdate it returns the Time.fixedTime property.

  Regular (per frame) calls should be avoided: Time.time is intended to supply
  the length of time the application has been running for, and not the time per
  frame.

  The value of Time.time is undefined during Awake messages and will start after
*/all messages are finished.
//Ex.:

int time = Time.time; //the variable time has a value equals to the
//amount of time in seconds that the application has been
//running for.
Posted by: Guest on October-27-2020
0

date time unity

using System;

//then inside your public class
public static DateTime theTime = DateTime.Now; //the time
[SerializeField] private string date = theTime.ToString("yyyy-MM-dd\\Z"); //convert time and date to string
[SerializeField] private string time = theTime.ToString("HH:mm:ss");
[SerializeField] private string dateTime = theTime.ToString("yyyy-MM-dd\\THH:mm:ss\\Z");
Posted by: Guest on September-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language