• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Bongmo · Dec 06, 2017 at 03:15 PM · timetimertimer countdowncalculatetimespan

Subtract milliseconds from 12 hours?

In my game there should be a timer which starts from 12:00 (hours). Now I want to subtract milliseconds from this timer. And when the timer is zero, then I want to show "Time ended!" I'm trying to do that with Timespan, but without success.

I find out, that I can show the milliseconds like that:

   print("timerString: "+ TimeSpan.FromMilliseconds(609811));

Output:

   timerString: 00:10:09.8110000

This doesn't help me a lot.

I need something like this:

11:58 (11 = hours, 59 = minutes)

00:23 (00 = hours, 23 = minutes)

00:00 (Time ended!)

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Yeezyy · Dec 07, 2017 at 11:02 AM 1
Share

Not really too sure but you can try and tell me the result
timerString = TimeSpan.From$$anonymous$$illiseconds(609811)) ;
int hours = timerString. Hours;
int mins = timerString.$$anonymous$$inutes ;
https://msdn.microsoft.com/en-us/library/system.timespan(v=vs.110).aspx

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by hallidev · Dec 07, 2017 at 07:30 PM

If you are trying to format a TimeSpan, try this:

     print("timerString: " + new DateTime(TimeSpan.FromMilliseconds(609811).Ticks).ToString("HH:mm:ss"));

Where "HH" is hours, "mm" is minutes, and "ss" is seconds. Get rid of the ":ss" if you just want "11:58".

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

74 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Accumulating deltaTime oddity 1 Answer

How accurate is Stopwatch.ElapsedTicks? 0 Answers

timer not ticking down 2 Answers

Visual timer? Like CUT THE ROPE 2 Answers

How do I make a Countdown Timer in Minutes and Seconds only 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges