Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • 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 /
  • Help Room /
avatar image
0
Question by Davonafe · Jan 09, 2018 at 05:56 PM · timerevent triggeringsystem.diagnostics

System.Daignostic. Stopwatch Not working on Builds but Works in Editor 2017.2.0p2

Im under the gun with a project but i really would like a proper timer solution. Im unsure how to validate where the issue is occuring.`enter code here.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using System;
 //using System.Diagnostic;
 
 public class Timer : GenericSingletonClass<Timer>
 {
     public float Time = 120;
     [SerializeField]
     public float elapsedTime;
     System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();
     public static Action timerFinished;
 
     public bool isRunning;
 
     private void OnEnable()
     {
         
     }
 
     public void StartTimer()
     {
         watch.Start(); 
     }
 
     public void StopTimer()
     {
         watch.Stop();
         watch.Reset();
     }
         
     public void ResetTimer()
     {
         watch.Reset();
         StartTimer();
     }
 
     private void Update()
     {
         if(Input.touchCount > 0)
         {
             ResetTimer();
         }
 
         if(watch.IsRunning)
         {
             if(watch.Elapsed.Seconds >= Time)
             {
                 StopTimer();
                 if(timerFinished != null)
                 {
                     timerFinished();
                 }
             }
         }
         
         elapsedTime = watch.Elapsed.Seconds;
     }
 
 }

the reason i want to use this timer in this way is because i need to send events out on completion but it seems to never start in build. there aren't any error logs for it either.

other wise my boss wants to implement it this way`using System.Collections; using System.Collections.Generic; using UnityEngine; //using System.Diagnostics; using System;

public class Timer : GenericSingletonClass { public float IdleTime = 120; [SerializeField] public float elapsedTime; private bool stopped = false; //Stopwatch s = new Stopwatch(); //public static Action timerFinished;

 public void StartTimer()
 {
     stopped = false;
     //s = new Stopwatch();
     //s.Start(); 
 }

 public void StopTimer()
 {
     //s.Stop();
     //s = null;
     stopped = true;
     elapsedTime = 0f;
     //UnityEngine.Debug.Log ("stopping timer--------------------------------------");
     //s.Reset();
 }

 public void PauseTimer() {
     stopped = true;
 }
     
 public void ResetTimer()
 {
     stopped = false;
     elapsedTime = 0f;
     //s = new Stopwatch();
     //s.Reset();
     //StartTimer();
 }

 public void ResetOnTouch() {
     if (!stopped) {
         ResetTimer ();
     }
 }


 private void Update()
 {
     if(Input.touchCount > 0 || Input.GetMouseButtonDown(0))
     {
         ResetOnTouch();
     }

     if (!stopped) {
         elapsedTime += UnityEngine.Time.deltaTime;

         if (elapsedTime >= IdleTime) {
             GlobalReset.Instance.ResetApp();
         }

     }


     /*
     if(s != null && s.IsRunning)
     {
         if(s.Elapsed.Seconds >= Time)
         {
             if (timerFinished != null) {
                 //timerFinished ();
                 GlobalReset.Instance.ResetApp();
             }
             StopTimer();
         }
     }

     if(s != null)
     elapsedTime = s.Elapsed.Seconds;

 */
 }

}

which ads more functions to do the same work and while i can put my event for timer finished back into this i still want to find out whats wrong with Stopwatch.

Comment
Add comment
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

0 Replies

· Add your reply
  • Sort: 

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.

Follow this Question

Answers Answers and Comments

123 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 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

Adding a timer on my spawn script 1 Answer

How to start a timer after an update 0 Answers

Clock doesn't stop when reaches 0.0. Can you help me with this. 1 Answer

Increment in every millisecond realtime? 1 Answer

How to add one score every second to scoremanager c# 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges