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 zlbdemon · Sep 22, 2015 at 02:09 AM · scrpting

All the script stoped the update func when i lock the computer

Hi guys; our company has an project which is about going to finish。But recently we found a problem. the unity version we used is 4.3.4.we found that when we lock the windows for a while and unlock it , the game begain at the time we locked the computer.And in the building setting inspector,we made the RunInBackground toggle checked. we write an test script as blew, when we locked the windows ,the count stopped counting.that means the update func has stopped working.we test this code at unity 4.1.2 it works well. but 4.3.4-4.6.4 does not work.we also tested it in unity 5.1.2 and it works..but if the whole project upgrade to UNITY5 ,the work we should do is huge. so,is anyone has the same problem? and how can i fix it with no big change(or upgrade)?

 using UnityEngine;
 using System.Collections;
 
 public class Test1 : MonoBehaviour {
     int[] t = new int[10];
     // Use this for initialization
     void Start () {
     
     }
     
     // Update is called once per frame
     void Update () {
         Debug.LogError("Update");
         t[0]++;
     }
     void LateUpdate()
     {
         Debug.LogError("LateUpdate");
         t[1]++;
     }
     void OnDisable()
     {
         Debug.LogError("OnDisable");
     }
     void OnEnable()
     {
         Debug.LogError("OnEnable");
     }
     void FixedUpdate()
     {
         Debug.LogError("FixedUpdate");
     }
     void OnApplicationPause(bool pause)
     {
         Debug.LogError("OnApplicationPause (" + pause + ")");
     }
     void OnGUI()
     {
         Debug.LogError("OnGUI");
         t[2]++;
 
         GUILayout.Label(t[0]+", " + t[1] + ", " + t[2] + ": \t(" + Time.realtimeSinceStartup + ") \t(" + Time.time + ")");
         GUILayout.Label("Mouse Position: " + Input.mousePosition);
         GUILayout.Label("Screnn Size: " + Screen.width + " * " + Screen.height);
     }
 }
 
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

Answer by RudyTheDev · Sep 22, 2015 at 10:55 AM

"Run in background" in Windows means running while the game window is not the foreground/focused window. It doesn't mean running while Windows is sleeping or has been locked or the OS is otherwise pausing or preventing applications from executing. Windows native lock suspends applications and there is nothing (simple) you can do to prevent that. All applications get suspended, not just Unity.

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

28 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

Related Questions

BCE0005 Unknown identifier: 'FirstPersonController' Help please 1 Answer

New at Unity, Issues following Sams Teach Yourself 0 Answers

Scripts worked but since 3 days its not working, please help. 0 Answers

How to attach a basic first person camera to a capsule? 1 Answer

My jump scripit wont work. i have been tryingtt o make it work for an eternity. please help. 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