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 MachoBrizzin · Aug 31, 2015 at 08:06 PM · c#uiunity 4.6asynccancel

Is it Possible to Cancel an Async Operation Once it has Begun?

Hello, I have a question... My main menu (built with Unity UI) has a level selector, when a button is selected it begins to load that scene, and then waits for the player to press the start button. This works. But my problem is that if the player picks a button, but then decides on a different level and wants to play that one, the Async Operation doesn't change. It will still load the first selected level.

So, I'm wondering if it's possible to "throw away" the previous Async Operation and start another one, so that if the player reconsiders his choice, it will successfully load.

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 cjdev · Aug 31, 2015 at 09:56 PM

You can't so much throw away the Async operation as check to see if it should be completed when it's time has come. For something like your application all you'd need is an int to keep track of which button or level the player has selected last and that would be the only Coroutine able to run. An implementation would look something like this:

 private int activeBtn = 1;

 void Start()
 {
     Button btn1 = (GameObject.Find("Button1") as GameObject).GetComponent<Button>();
     Button btn2 = (GameObject.Find("Button2") as GameObject).GetComponent<Button>();
     btn1.onClick.AddListener(() => StartCoroutine(Foo1(2f)));
     btn2.onClick.AddListener(() => StartCoroutine(Foo2(2f)));
 }

 public IEnumerator Foo1(float waitTime)
 {
     activeBtn = 1;
     yield return new WaitForSeconds(waitTime);
     if(activeBtn == 1)
         Debug.Log("Foo1");
 }

 public IEnumerator Foo2(float waitTime)
 {
     activeBtn = 2;
     yield return new WaitForSeconds(waitTime);
     if (activeBtn == 2)
         Debug.Log("Foo2");
 }
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

31 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

Related Questions

My 'Score' Variable Is Not Printing To UI Text 1 Answer

Scene Change after some time when achieving a certain Score C# 1 Answer

C# - Canvas UI addListener in code is not working 1 Answer

Unity 4 error loading page 0 Answers

UI penetration through objects. 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