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 omg_Aya · Oct 22, 2014 at 11:44 PM · mecanimidleanimation-blending

How Can I have Multiple Idles using Mecanim Blend Tree

Hello all,

First of all I would just like to say I have read this post http://forum.unity3d.com/threads/mecanim-play-random-animations-in-idle-state.152489/ and it's what got me started on this.

The problem is that the normalizedTime doesn't seem to give me back a very useful value. I'm not exactly sure what it's supposed to do but I thought it was going to give me the current time the animation has gone.

I was using it to try and figure out when the 2nd Idle animation ends so that I can set the randomIdle float back to 0. Is there any other ways to do this?

Also what is the best way to have it actually blend between states using this method?

Thank you.

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 omg_Aya · Oct 23, 2014 at 03:40 PM

Well I figured out a solution that I think is better. I fixed some of my if checks involving normalizedTime by doing %1.0f. But I stopped using the blendtree method because I would then have to do manual blending from RandomIdle 0-1 over a certain amount of time.

I just decided to delete the blend tree and add another Idle state in the layer, then have Idle0 transition to Idle1 when RandomIdle=1.0f (basically a bool now). Then both Idles can all transition to the other animation states (walk/run etc) but all the other states only trans back to idle0. Also I have Idle1 trans back to Idle0 with the exit time condition. This makes it actually blend back to the first idle w/o me having to do anything.

 idleTime -= Time.deltaTime;
         if (idleTime < 0.0f)
         {
             anim.SetFloat("RandomIdle",1f);
 
         }
 
 
         if ( anim.GetFloat("RandomIdle")==1.0f && anim.GetCurrentAnimatorStateInfo (0).normalizedTime%1.0f >= 0.9f) 
         {
             Debug.Log("R I 0");
             anim.SetFloat("RandomIdle",0f);
             idleTime=timeUntilNewIdle;
         }

there is all the code to get it to work. The only small issue left to fix is idleTime is still counting down even when the player isn't idling. Should be an easy fix to figure out though.

Thanks.

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

2 People are following this question.

avatar image avatar image

Related Questions

mecanim move and root animation 0 Answers

Mecanim - transition from run to jump 1 Answer

Random float parameter for idle animations 1 Answer

Copy/Paste Mecanim Transitions 6 Answers

Mecanim robot tutorial Rocketpack? 0 Answers


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