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 Destin1970 · May 29, 2016 at 12:46 AM · c#scripting problemtextdontdestroyonload

Countdown Timer

I am trying to make a script that counts down the timer and stays in the same place and keeps counting down through 3 levels. I wrote this: using UnityEngine; using System.Collections; using UnityEngine.UI;

public class countdownTimer : MonoBehaviour { public Text score; public GameObject countdownManager;

 void Update()
 {
     DontDestroyOnLoad(countdownManager);
     DontDestroyOnLoad(score);
     setTime();
 }

 void setTime()
 {
     float timeSinceStart = Mathf.Round(Time.time);
     float scoreText = (25 - timeSinceStart);
     if (scoreText > 0) {
         score.text = (scoreText.ToString());
     }
     else
     {
         score.text = ("0");
     }
 }

}

When switching, I got errors saying: The object of type 'Text' has been destroyed but you are still trying to access it. Your script should either check if it is null or you should not destroy the object.

Can anyone fix the error?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by JedBeryll · May 29, 2016 at 05:43 AM

Mark the score like this: DontDestroyOnLoad(score.gameObject);

Comment
Add comment · Show 3 · 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
avatar image Destin1970 · May 29, 2016 at 11:09 AM 1
Share

I changed my code to this and it still doesn't work: using UnityEngine; using System.Collections; using UnityEngine.UI;

public class countdownTimer : $$anonymous$$onoBehaviour { public Text score; public GameObject countdown$$anonymous$$anager;

 void Update()
 {
     DontDestroyOnLoad(countdown$$anonymous$$anager);
     DontDestroyOnLoad(score.gameObject);
     setTime();
 }

 void setTime()
 {
     float timeSinceStart = $$anonymous$$athf.Round(Time.time);
     float scoreText = (25 - timeSinceStart);
     if (scoreText > 0) {
         score.text = (scoreText.ToString());
     }
     else
     {
         score.text = ("0");
     }
 }

}

avatar image JedBeryll Destin1970 · May 29, 2016 at 12:38 PM 1
Share

Sorry i forgot that it's a UI element which means it most likely has a parent. As long as the parent is destroyed, it will be as well. So the proper answer should be: DontDestroyOnLoad(score.transform.root.gameObject); Or another way is to create the whole thing in the next map too and find it.

avatar image Laiken Destin1970 · May 29, 2016 at 03:30 PM 0
Share

Btw you can put DontDestroyOnLoad on awake or start. You don't need to run it every frame. And like JedBeryll said, DontDestroyOnLoad() only works on objects that have no parent.

If you want you can forget about DontDestroyOnLoad and just make the values that shoudn't be erased be static, since static values don't reset when you change levels.

avatar image
0

Answer by Destin1970 · May 29, 2016 at 04:40 PM

Thank You! The program works with no errors.

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.

Follow this Question

Answers Answers and Comments

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

arrow from text to object - complete beginner 0 Answers

UI Text created from C# Script 0 Answers

ui Text not responding to collider 1 Answer

UI Text: Words at end of line jumping to next line 0 Answers

Add "1" to score text? Not "11111"? 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