Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 stanisz1993 · Nov 12, 2019 at 08:31 PM · animatoreventstate

Unexpected state transition in animator controller

I am having a problem with transition between states: alt text

Character is having a plate and he is in a IdlewithPlate state. Now i want to put it back. So I set trigger "puttingPlate" which allows me to go into a put_plate state. This script is attacked to character :

void Update() { if (Input.GetKeyDown("1")) { if (anim.GetBool("havingPlate")) { anim.SetTrigger("puttingPlate"); } else { anim.SetTrigger("Grabbing"); } } }

and since he is in a state havingPlate he will perform puttingPlate, which shows below figure:

alt text

In order to drop plate(which is set its position and rotation to initial set), I have set event OnDrop() at the end of put_plate animation. The onDrop() in script looks like this:

public void OnDrop() { if (pickObj != null) { Vector3 distance = pickObj.transform.position - objectOriginalParent.transform.position; float magnitude = distance.magnitude; Debug.Log("Magnitude: " + magnitude); if(magnitude<= magnitude_set) { pickObj.transform.parent = objectOriginalParent.transform; pickObj.transform.position = objOriginalPosition; pickObj.transform.rotation = objOriginalRotation; anim.SetBool("havingPlate", false); } Debug.Log("HavingPlate: " + anim.GetBool("havingPlate")); } }

In this script my intention is to reset position of plate before picking up, and it works, because plate is placed back. The problem is that when I put it, character return to IdlewithPlate state, despite that condition for this state is set to "havingPlate" ==True. However my OnDrop() function should change it to false, and go to Normal Iddle_state marked on a first figure. What I am doing wrong?

Also a puttingPlate in a parameters tab, doesn't looks like it's triggered, however putting plate animation was performed because I see this animation in 3d view. This character is putting plate, but it return to state when he holds air, without plate.

grabbing-2.png (61.4 kB)
while-plate.png (56.0 kB)
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

0 Replies

· Add your reply
  • Sort: 

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

144 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

Related Questions

How to get fileID information so i can just edit Mecanim Animator through script? 2 Answers

Animator switches animation without trigger 0 Answers

How to access Animator state of other collider? 1 Answer

Play an Animation through a Script 2 Answers

Animator does not play Animation on object 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