Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 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
8
Question by MerchDev · Dec 20, 2013 at 02:28 PM · animationmecanimtypeparameter

Mecanim Animation Parameter Types: Boolean vs. Trigger

Hi everyone. I'm using Unity 4.3.1 and in the animation state machine window, I can add 4 types of parameters: int, float, Bool and Trigger. What is the difference between Bool and Trigger?

They seem to be the same (both have checkbox interface). There's nothing about the "Trigger" parameter type in Unity Docs. Instead, there's a vector type that's no longer in Unity. http://docs.unity3d.com/Documentation/Manual/AnimationParameters.html

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

3 Replies

· Add your reply
  • Sort: 
avatar image
23
Best Answer

Answer by tanoshimi · Dec 20, 2013 at 04:05 PM

Trigger is new added in 4.3. My understanding is that it is a "one-shot" Boolean, which can be triggered (i.e. set to "true") for a single frame only, after which it automatically reverts back to false.

Prior to this, it was somewhat difficult to implement state transitions that you wanted to take immediate effect but then return (i.e. such as firing a gun), because you had to wait for the transition to begin before resetting the Bool with logic such as:

 // Set the Bool to transition to the firing state
 animator.SetBool("Firing", true);
 // Once transition has begun, reset the bool
 if (animator.GetNextAnimatorStateInfo(0).IsName("Firing")) {
     animator.SetBool("Firing", false);
 }
Comment
Add comment · Show 4 · 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 ahorne · Mar 04, 2014 at 05:40 PM 8
Share

It actually appears that its not just set for one frame. A trigger is set true until it is consumed by a state change. Only after that does it return to false.

avatar image Nikaas ahorne · Nov 26, 2016 at 11:15 AM 0
Share

What @ahorne said is the most important aspect of the trigger compared to bool (the idea is similar just better explained than the answer). I had a state machine that got 2 conflicting state change events in one frame. One was float change and the other was bool (from false to true). Bool was true for a very short time, but the float transition was getting priority and until its state finishes the bool was already false and did not trigger his transition. Trigger solves this by "remembering" the event until it is used by some transition.

avatar image ahorne Nikaas · Nov 30, 2016 at 01:50 AM 0
Share

Parameter values are only changed when code changes them. If you had a bool that was "true for a very short time", then one of your script's code was setting it to false before you wanted it to be. Triggers manage this for you, and some of the time that may be exactly what you want.

avatar image Tony-Sparrow · Sep 24, 2014 at 09:20 AM 0
Share

thanks for your answer, this's very useful to me

avatar image
15

Answer by Sylker · Sep 09, 2014 at 01:28 PM

It works like this:

Let's say you have an animation that plays when a bool is set to true. After the animation is complete the bool should be set to false again in order to transit to another state.

This used to be achieved by code, but now you can use a Trigger instead. It's a bool that will be set to false automatically after the completion of animation.

Quite useful, huh?

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 Peter_123 · Apr 10, 2018 at 12:47 PM 1
Share

Actually it is not set to false after animation is complete, neither is it set to false after 1 frame - it is directly set to false ("reset") when $$anonymous$$ecanim triggers it. If you have the same trigger as a condition for more state transitions (for example on another layer) that get triggered at the "same time" only the first from the top will activate and trigger will be already reset when $$anonymous$$ecanim will be considering triggering the second one.

avatar image
0

Answer by ritesh_khokhani · Apr 17, 2015 at 07:21 AM

For kind of info,

In unity's parameter windows both Trigger and Bools seems same,

But from Transition's inspector window one can disguise it, for Bools it shows checkbox while for Trigger it won't..

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

24 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

Related Questions

How can I change a mecanim animation by pressing a key? 1 Answer

Multiple Animation Events Parameter Mecanim 1 Answer

Create new Mecanim parameter from code? 1 Answer

Mecanim bool parameter is staying true for too long 2 Answers

Animation Events and Mecanim 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