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
0
Question by Pilot · Feb 11, 2012 at 01:25 PM · animationcheckend

How can I check if an animation has finished playing?

I am working on a jump --> fall --> land system. I want to determine when my landing animation has finished so that I can set my "landing" boolean to false. Here is the simple code:

 // If the character is landing
             else if (landing) {
                  Debug.Log("Landing");
                 animation[landingAnimation.name].wrapMode = WrapMode.Once;
               if(animation.clip.name!=landingAnimation.name || !animation.IsPlaying(landingAnimation.name) )
                 animation.CrossFade(landingAnimation.name, 0.1f);  
             else
                 landing = false;
                 //falling = false;
                 Debug.Log("Landing is false");
             }

As you can see, the landing animation is set to play once. I have commented out the boolean because otherwise it fires before the animation finishes. I have tried using !animation.isPlaying but it wasn't working. Is there another way? Or maybe I haven't set up the isPlaying correctly.

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 flamy · Feb 11, 2012 at 02:14 PM

you are doing it right but seems like it is the problem of crossfading continuously inside the if loop, meaning the animation stays for ever!! change the code a bit it will be fine

 / If the character is landing
        else if (landing) {
          Debug.Log("Landing");

             animation[landingAnimation.name].wrapMode = WrapMode.Once;

           if(animation.clip.name!=landingAnimation.name  
                           ||  !animation.IsPlaying(landingAnimation.name) )
                animation.CrossFade(landingAnimation.name, 0.1f);  
 
            else
                landing = false;
        }



I hope this would work and also please bare me, if it has some typo, i couldnot test the code rite now!!

Comment
Add comment · Show 2 · 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 Pilot · Feb 11, 2012 at 03:25 PM 0
Share

Thank you for your response flamy. I have updated the script in the answer. It is playing the animation now but once the landing boolean is set to false, it seems to go back and loop through the entire "else if" statement again continuously. I've made the falling and landing booleans public so I can watch them in the inspector, and the debug logs of "Landing"... "Landing is false"... "Landing"... seem to prove that the last statement keeps looping. Would you know why this is happening?

avatar image flamy · Feb 11, 2012 at 04:10 PM 0
Share

hmm it seems the variable landing is being changed from outside this block to true. Check where it turns true and you would get it

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Animation Window: Delete part of the timeline 6 Answers

Can the animation editor create local rotational data? 3 Answers

Adding animation clips via script 2 Answers

Animation doesn't play when distant check is triggered 1 Answer

How to check if animation is playing? C# 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