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 SpaseCat · Jul 12, 2014 at 04:15 AM · javascriptscene

Why is my script still running in other scenes?

Ok, so I have 3 scenes in my game, Menu, Level 1, and Game Over. The script below is an asteroid spawning system that gets increasingly harder as you go. When the player dies and the game switches over to the Game Over scene the script keeps running. So when the player restarts the level the game is super hard. I have no DontDestroyOnLoad things in my game and no static variables. I dont know why its doing this but is there any way to stop the script and reset it when the level is re played?

 #pragma strict
 var prefab : GameObject;
 var nextActionTime = 0.0f;
 var period = 0.7f;
 
 function Update() {
 period -= Time.deltaTime * (0.006 / 0.5);
 if (Time.time > nextActionTime) {
     nextActionTime += period;
 var position: Vector3 = Vector3(Random.Range(-1.8, 2), 0, Random.Range(-1.8, 2));
 Instantiate(prefab, position, Quaternion.identity);
 }}
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

1 Reply

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

Answer by rutter · Jul 12, 2014 at 04:19 AM

It's not that the script keeps running, it's that you're using Time.time in a peculiar way.

Remember that Time.time is the number of seconds since the application started running. If your game has been running for 500 seconds -- no matter which level(s) you've been on -- then Time.time will be 500.

Because your nextActionTime value starts counting from 0, and increments by period each time you spawn an asteroid, you might end up spawning one asteroid per frame once Time.time gets to be a big number.

How to fix this? Fix your time tracking! :)

First option: instead of having nextActionTime count from zero, set it to Time.time + period once the level loads. You could do this in Awake() or Start().

Second option: instead of using Time.time, use Time.timeSinceLevelLoad, which is the number of seconds since you last loaded a scene.

Comment
Add comment · Show 1 · 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 SpaseCat · Jul 12, 2014 at 07:24 PM 0
Share

Thanks man! I knew it would be some simple thing like that. Your a life saver! :)

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

Disable GameObject Only Father Not Children 2 Answers

Can someone help me fix my Javascript for Flickering Light? 6 Answers

Setting Scroll View Width GUILayout 1 Answer

How Do I Make A Health Bar 6 Answers

Pause Menu background problem 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