• 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
Question by boddole · Jan 26, 2014 at 03:08 PM · c#coroutine

Unexpected Co-Routine Behavior

Hello everyone, I was doing some work with coroutines and got a result I was not expecting. The critical parts of the script are below, but here is a summary:

Desired result: //script is doing things //coroutine suspends execution temporarily, shows debug message confirming it finished //script continues

Actual Result: //script is doing things //coroutine is called //script finishes execution //debug message from coroutine appears (so it waited, but did not stop the script while it did)

  • realize I could put the rest of the code in the co-routine, but to keep things clean I'd rather just use the co-routine to stop the execution (which I thought it could do). Any ideas are appreciated.

       void MovePosition ()
         {
             if (nextPhase == false && inMotion == false)
             {
                 transform.localPosition = Vector3.MoveTowards (transform.localPosition, endingPosition, movementSpeed * Time.deltaTime);
                 if (Vector3.Distance(endingPosition, transform.localPosition) < 0.01f)
                 {
                     inMotion = true;
                     if (inMotion == true)
                     {
                         StartCoroutine (WaitForRetract(rectractTimer));
                         nextPhase = true;
                         Debug.Log ("next pahse is " + nextPhase + " called from 1st block");
                         inMotion = false;
                         Debug.Log ("in motion is " + inMotion + " called from 1st block");
                     }
                 }
             }
    
         IEnumerator WaitForRetract (float time)
         {
             yield return new WaitForSeconds (time);
             Debug.Log ("I finished waiting");
         }
    
Comment

People who like this

0 Show 0
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
Best Answer

Answer by Owen-Reynolds · Jan 26, 2014 at 04:22 PM

Only coroutines get to say "wait here for a while." Only they have the ability to be packed away in the middle of running, then restarted at that point. Everything else has to just run, run ,run. So, what you are seeing is the proper behavior.

In your case, you would use YIELD StartCoroutine (WaitForRetract(rectractTimer));. But that would only be allowed if MovePosition were itself a coroutine. But then you could just use WaitForSeconds directly.

Depending on what you are trying to do, some timing issues are best handled with a timer variable (and no coroutines): startPhaseOneTime = Time.time+2.0f; and if(Time.time>startPhaseOneTime).

Comment
boddole
Lo0NuhtiK

People who like this

2 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 boddole · Jan 27, 2014 at 01:17 AM 0
Share

I see, thank you for the clarification.

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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

19 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

Related Questions

C# -- Build character unit from script 1 Answer

C# Input.GetKey("Tab") Double Tap 1 Answer

C# Throw GameObject Upon Mouse Click 1 Answer

Player lives script help 1 Answer

Making a fill take exactly n seconds to complete 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