Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 /
avatar image
0
Question by Tocher96 · May 17, 2015 at 07:50 PM · scripting problem

How do i get my timer to reset?

I have game with multiple levels and on the last one you can roll into a box that loads the start of the game back up. The problem is my timer and coin counter do not reset when you do this. I need some sort of on trigger reset that resets the game time and coin count.

Timer script c#

using UnityEngine; using System.Collections; using UnityEngine.UI;

public class Timer : MonoBehaviour {

 public Text counterText;

 public float seconds, minutes;

 public static int coinCount = 0;

 // Use this for initialization
 void Start () 
 {
     counterText = GetComponent<Text> () as Text;
 }
 
 // Update is called once per frame
 void Update () 
 {
     minutes = (int)(Time.time/60f);
     seconds = (int)(Time.time % 60f);
     counterText.text = minutes.ToString ("00") + ":" + seconds.ToString ("00") + ("    Coins: ") + coinCount;
 }

}

End Level script c#

using UnityEngine; using System.Collections;

public class EndLevel10 : MonoBehaviour {

void OnTriggerEnter () { Application.LoadLevel("MainMenu"); } }

Comment
Add comment · Show 2
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 SirBoboHobo · May 17, 2015 at 07:57 PM 0
Share

Just use GetComponent to get the time/coin count in your EndLevel10 and set them to 0 when you enter the trigger... it'll reset the score and time AND will send you back to $$anonymous$$ain$$anonymous$$enu

avatar image Tocher96 · May 27, 2015 at 02:10 PM 0
Share

Ok I did the get component and called the variable through the timer class, had to change variables to static, but now I am getting this error CS0029: Cannot implicitly convert type int to string. It is on line 19 of the EndFinalLvl script. I've looked for answeres regarding the error but could not find anything that pertains to my situation. Sorry it has been over a week. I've been swamped with graduation and college stuff.

using UnityEngine;

using System.Collections;

using UnityEngine.UI;

public class EndFinalLvl : $$anonymous$$onoBehaviour {

void Start ()

{

 Timer.counterText = GetComponent<Text> () as Text;

}

// Update is called once per frame

void OnTriggerEnter ()

{

 Application.LoadLevel ("$$anonymous$$ain$$anonymous$$enu");

 Timer.$$anonymous$$utes = (int)(Time.time/60f);

 Timer.seconds = (int)(Time.time % 60f);

 Timer.counterText.text = 0; //this is the line with the error

}

}

using UnityEngine;

using System.Collections;

using UnityEngine.UI;

public class Timer : $$anonymous$$onoBehaviour {

 public static Text counterText;

 public static float seconds, $$anonymous$$utes;

 public static int coinCount = 0;

 // Use this for initialization
 void Start () 
 {
     counterText = GetComponent<Text> () as Text;
 }
 
 // Update is called once per frame
 void Update () 
 {
     $$anonymous$$utes = (int)(Time.time/60f);
     seconds = (int)(Time.time % 60f);
     counterText.text = $$anonymous$$utes.ToString ("00") + ":" + seconds.ToString ("00") + ("    Coins: ") + coinCount;
 }

}

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

PUN (Photon Unity Networking) Players Move Other Players 1 Answer

Assigning value to variable from JS script via C# script 1 Answer

Editing UIElements Label through code and alignment 1 Answer

How to disable a script on a bunch of instantiated objects with tag ? 1 Answer

urp custom shader? 0 Answers


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