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 29, 2017 at 10:13 AM · animationcollisionwaitforseconds

Trigger Animation after Wait For Seconds

Hi I'm trying to trigger an Animation using a Collider. I have an IEnumerator setup so that it happens a couple seconds after the collision takes place.

Problem is that when I place the animation code BEFORE the "yield return new WaitForSeconds", it works fine, but AFTER, for some reason it doesn't work.

See at the bottom below for the LeftYellowSideWall code. That is the Animation. And the WaitForSeconds is a couple lines above it.

                                                                                            IEnumerator OnCollisionEnter2D (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);
         //Ball8.SetActive (false);
         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 (2);

         GreenBalls.SetActive (false);

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

     }
 }
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
1
Best Answer

Answer by sambid123sameer · Jun 29, 2017 at 10:54 AM

OnCollisionEnter2D is not a coroutine

Make a separate Coroutine function and then call it

 void OnCollisionEnter2D (Collision2D Ball8Layer5Collider)
  {
     StartCoroutine(CoroutineName(Ball8Layer5Collider));
  }
 
 IEnumerator CoroutineName (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);
          //Ball8.SetActive (false);
          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 (2);
          GreenBalls.SetActive (false);
          LeftYellowSideWall.GetComponent<LeftYellowWall> ().LeftYellowWallAnim.Play ("Left Yellow Side Wall MOVE BACK", -1, 0f);
      }
 }

Something like that

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 ILoveMyDada · Jun 29, 2017 at 11:34 AM 0
Share

Awesome thank you, that worked!

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

184 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

Related Questions

WaitForSeconds twice in 1 if statement, not working 2 Answers

Collision occurring when it should not! Help! 1 Answer

Collision on specific Frames 1 Answer

Playing a different sprite prefab on collission. 1 Answer

i have 2 assets , i want to make a text appear after a collision between them (and end the game if that is possible) , how can i do that ? 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