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
4
Question by Tim-Michels · Aug 27, 2012 at 09:40 AM · coroutineyieldstopbreak

What will StopCoroutine exactly do?

I was wondering if you call StopCoroutine, whether the coroutine stops instantly or will the coroutine break on the next yield.

It's really important to know if it's possible for the coroutine to still execute commands after the Stop has been called.

Any help please? Thanks in advance.

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
9
Best Answer

Answer by Bunny83 · Aug 27, 2012 at 10:15 AM

You can't even call stop in between yield because everything is running in the same thread. Whereever you want to call stop, it will happen when the coroutine has reached the next yield. Even when Unity would support threads, you can only terminate a coroutine when it reaches the next yield.

So the short answer is: No, the coroutine can't execute any code when StopCoroutine is called. That's because the coroutine has to finish the current step before any other code can be executed.

One exception: When you call StopCoroutine inside the coroutine itself, it will of course finish the current step. If you want to break out of a coroutine, use yield break;

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
avatar image
6

Answer by MadDave · Aug 27, 2012 at 10:25 AM

Coroutines are not threads. They do not run parallel to your other functions. CoRoutines are simply called at some point in the game loop, on the main thread. StopCoroutine simply removes the Coroutine from the scheduling list. It will not be called again.

In other words: Yes, you can be sure that the CoRoutine will not run again after a call to StopCoRoutine. But technically speaking it is not "stopped instantly" because it is actually not executing at this point. That implies that it always stops at a yield - that is the only point where it is ever interrupted. If you are in a different function, your CoRoutine is currently waiting at a yield.

Hope that makes it clear :)

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 Bunny83 · Aug 27, 2012 at 10:27 AM 0
Share

Well explained +1

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

9 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Does a coroutine end itself automatically? 2 Answers

WaitForSeconds is breaking out of my IEnumerator 1 Answer

Var change between 2 RPC calls / Coroutine problem 1 Answer

How to start at a specific coroutine? 0 Answers

Why is my "yield" statement stopping my script? 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