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 dhernan881 · Jul 28, 2020 at 04:50 PM · coroutine errorswhile loop

Coroutine exists after while loop, gameObject isn't being deleted

Hello, I'm having trouble with a coroutine. I'm noticing that the coroutine stops running when it completes a while loop. The most common solution I'm finding online is to make sure that the gameObject calling the coroutine isn't being destroyed, and it definitely isn't.

The thing that confuses me the most is that I tried using debug breaks to see what was going on and when I put one in the loop guard and step through each iteration of the loop manually, it works fine. When the game runs normally, the code after the while loop doesn't get executed. Let me know if you come up with any insights. The issue is with the while (curVal != targVal) section.

 public static void ShowScene(bool show, float speed = 1f, bool smooth = false, Texture2D transitionEffect = null) {
         if (transitioningOverlay != null)
             instance.StopCoroutine(transitioningOverlay);
         sceneVisible = show;
 
         if (transitionEffect != null)
             instance.overlayImage.material.SetTexture("_AlphaTex", transitionEffect);
 
         transitioningOverlay = instance.StartCoroutine(TransitioningOverlay(show, speed, smooth));
     }
 
     static Coroutine transitioningOverlay = null;
     static IEnumerator TransitioningOverlay(bool show, float speed, bool smooth) {
         float targVal = show ? 1f : 0f;
         float curVal = instance.overlayImage.material.GetFloat("_Cutoff");
 
         while (curVal != targVal) {
             curVal = smooth ? Mathf.Lerp(curVal, targVal, speed * Time.deltaTime) 
                 : Mathf.MoveTowards(curVal, targVal, speed * Time.deltaTime);
             instance.overlayImage.material.SetFloat("_Cutoff", curVal);
             yield return new WaitForEndOfFrame();
         }
 
         transitioningOverlay = null;
 
         NovelController.instance.Next();
     }
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 cwalshwarder · Jul 31, 2020 at 11:41 PM

Are you unloading a scene? Maybe the gameObject calling the coroutine really is destroyed, but it isn't null because it's still being referenced. That's probably not the problem, but I guess try doing DontDestroyOnLoad(instance) to make sure it's not destroyed.

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

131 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

Related Questions

On applying this code Unity is hanging. What is wrong with the code? 2 Answers

[SOLVED] Coroutine while loop exits before condition met 1 Answer

Coroutine making unity freeze 2 Answers

Coroutine randomly stops and continues after pausing and unpausing game 2 Answers

Do-While loop 2 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