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 /
avatar image
0
Question by ILoveMyDada · Jun 30, 2017 at 01:23 AM · animationcollisionif-statementswaitforseconds

WaitForSeconds twice in 1 if statement, not working

I'm trying to get 1 animation to play after 10 seconds, and then 10 seconds later, the 2nd one plays.

The 1st animation plays fine, but the 2nd one won't. See below at the very bottom. The LeftYellowSideWall is the 1st animation and the following RightYellow, is the 2nd.

 void OnCollisionEnter2D (Collision2D Ball8Layer5Collider)
 {

     StartCoroutine (Ball8Layer5Coroutine (Ball8Layer5Collider));

 }




 IEnumerator Ball8Layer5Coroutine (Collision2D Ball8Layer5Collider)
 {
     if (Ball8Layer5Collider.gameObject.tag == "ball" && BallIsGreen == false) 
     {
         FakeBalls.SetActive (false);
         RevealedBalls.SetActive (false);

         //NorthWall.SetActive (true);

         rend.sharedMaterial = greenBall [1];

         audio.PlayOneShot (LockedAudio, volume);

         LockedSoundPlayed = true;

         BallIsGreen = true;
     }




     if (Ball8Layer5Collider.gameObject.tag == "ball" && LockedSoundPlayed == true) 
     {
         audio.PlayOneShot (GreenBallHitSound, volumeGreenBallHit);
     }





     if (Ball8Layer5Collider.gameObject.tag == "ball" && Ball15.GetComponent<Ball15Layer4GreenCollide>().BallIsGone == true) 
     {
         BG_Owl.GetComponent<SpriteRenderer> ().enabled = false;

         transBand.GetComponent<VideoPlayer> ().enabled = true;

         audio.PlayOneShot (BGClankReverbSound, volumeBGClankReverb);

         LeftYellowSideWall.GetComponent<LeftYellowWall> ().ColorChangeRed5();
         RightYellowSideWall.GetComponent<RightYellowWall> ().ColorChangeRed5 ();

         this.GetComponent<MeshRenderer>().enabled = false;
         this.GetComponent<CircleCollider2D> ().enabled = false;
         BallIsGreen = false;
         BallIsGone = true;

         MinusCounterFloor.GetComponent<BoxCollider2D> ().enabled = true;

         CountTrigger.GetComponent<BoxCollider2D> ().enabled = true;

         numberText.GetComponent<Text> ().color = new Color (0.035f, 0f, 1f, 1f);


         yield return new WaitForSeconds (10f);

         GreenBalls.SetActive (false);
         LeftYellowSideWall.GetComponent<LeftYellowWall> ().LeftYellowWallAnim.Play ("Left Yellow Side Wall MOVE BACK", -1, 0f);

         yield return new WaitForSeconds (10f);

         RightYellowSideWall.GetComponent<RightYellowWall> ().RightYellowWallAnim.Play ("Right Yellow Side Wall MOVE BACK", -1, 0f);

     }
 }
Comment
Add comment · Show 1
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 Raimi · Jul 08, 2017 at 12:04 PM 0
Share

I think it might be because the first is yielding then returning control back to the coroutine so the second gets missed. The code after the if will be run next.

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Shadowskull1247 · Jun 30, 2017 at 01:26 AM

I had a similar issue. The second one is always ignored. I don't know why, just try using a timer with time.deltaTime, should work much better than using yield WaitForSeconds. That's what I did.

Comment
Add comment · Show 5 · 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 ILoveMyDada · Jun 30, 2017 at 01:38 AM 0
Share

Ah I see. How would I go about doing that? Sorry I'm still new to some of this.

avatar image Shadowskull1247 ILoveMyDada · Jun 30, 2017 at 03:54 AM 0
Share

@ILove$$anonymous$$yDada

In theory, this should work. I haven't tested it, but it should work, if not, let me know.

' //$$anonymous$$ake sure to declare the public float "timer" at the top under your public class and the normal float "checkforif" must go up there too, but set its value to 0f.

 void Update()
 {
      if (checkforif == 1)  //checks to see if the script has reached the bottom of itself, so the timer doesn't run continuously for no reason.
      {
       timer -= Time.deltaTime; //Subtracts the timer float by the amount of time since the last frame of the game and redeclares the "timer" float.
      }
 }
 void OnCollisionEnter2D (Collision2D Ball8Layer5Collider)
  {
      StartCoroutine (Ball8Layer5Coroutine (Ball8Layer5Collider));
  }
  IEnumerator Ball8Layer5Coroutine (Collision2D Ball8Layer5Collider)
  {
      if (Ball8Layer5Collider.gameObject.tag == "ball" && BallIsGreen == false) 
      {
          FakeBalls.SetActive (false);
          RevealedBalls.SetActive (false);
          //NorthWall.SetActive (true);
          rend.shared$$anonymous$$aterial = greenBall [1];
          audio.PlayOneShot (LockedAudio, volume);
          LockedSoundPlayed = true;
          BallIsGreen = true;
      }
      if (Ball8Layer5Collider.gameObject.tag == "ball" && LockedSoundPlayed == true) 
      {
          audio.PlayOneShot (GreenBallHitSound, volumeGreenBallHit);
      }
      if (Ball8Layer5Collider.gameObject.tag == "ball" && Ball15.GetComponent<Ball15Layer4GreenCollide>().BallIsGone == true) 
    
avatar image Shadowskull1247 Shadowskull1247 · Jun 30, 2017 at 03:54 AM 0
Share
  {
              BG_Owl.GetComponent<SpriteRenderer> ().enabled = false;
              transBand.GetComponent<VideoPlayer> ().enabled = true;
              audio.PlayOneShot (BGClankReverbSound, volumeBGClankReverb);
              LeftYellowSideWall.GetComponent<LeftYellowWall> ().ColorChangeRed5();
              RightYellowSideWall.GetComponent<RightYellowWall> ().ColorChangeRed5 ();
              this.GetComponent<$$anonymous$$eshRenderer>().enabled = false;
              this.GetComponent<CircleCollider2D> ().enabled = false;
              BallIsGreen = false;
              BallIsGone = true;
              $$anonymous$$inusCounterFloor.GetComponent<BoxCollider2D> ().enabled = true;
              CountTrigger.GetComponent<BoxCollider2D> ().enabled = true;
              numberText.GetComponent<Text> ().color = new Color (0.035f, 0f, 1f, 1f);
                   if  (timer <= 0)  //checks to see if the timer has reached zero, if it hasn't, the else 
  block returns the "checkforif" float as true, letting the update function run the timer.
                   {
                   GreenBalls.SetActive (false);
                   checkforif = 0; // disables the timer, so it stops running.
                   LeftYellowSideWall.GetComponent<LeftYellowWall> ().LeftYellowWallAnim.Play ("Left 
                   Yellow Side Wall $$anonymous$$OVE BAC$$anonymous$$", -1, 0f);
                   yield return new WaitForSeconds (10f); // you can keep one WaitForSeconds, because it will actually be acknowledged. 
                   RightYellowSideWall.GetComponent<RightYellowWall> ().RightYellowWallAnim.Play 
                   ("Right Yellow Side Wall $$anonymous$$OVE BAC$$anonymous$$", -1, 0f);
               }
           else {
               checkforif = 1f; //let's the update function know that it can run the timer now
               }
          }
      }
Show more comments
avatar image
0

Answer by Raimi · Jul 08, 2017 at 12:20 PM

I left a comment, but thought I would add this in case it helps. The first wait is yielding then returning control back to the coroutine so the second gets missed. The code after the if will be run next. Below is just an example to give some ideas.

 IEnumerator Test()
 {
      if(condition)
      {
            //Do something e.g play 1 fast
            yield return new WaitForSeconds(10);
      }else{
            //Do something e.g play 1 slow
            yield return new WaitForSeconds(10);
      }
 
      //Do something else e.g play 2
      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

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

185 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 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

Trigger Animation after Wait For Seconds 1 Answer

How do you trigger a collider to become enabled after the player collider isn't touching it anymore? 4 Answers

How to get the first person controller to collide with an animated object? 1 Answer

Wait for seconds on collision 1 Answer

Stop animation when character controller hits walls 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