name | 参数名称。 |
id | 参数 ID。 |
value | 新的参数值。 |
设置给定布尔参数的值。
通过脚本使用 Animator.SetBool 将布尔值传递给
。
用于触发动画器状态间的过渡。例如,通过将“alive”布尔值设置为 false 来触发死亡动画。有关设置动画器的更多信息,请参阅动画。
注意:可以按名称或 ID 号识别参数,但名称或 ID 号必须与要在动画器中更改的参数相同。
//Set up a new Boolean parameter in the Unity Animator and name it, in this case “Jump”. //Set up transitions between each state that the animation could follow. For example, the player could be running or idle before they jump, so both would need transitions into the animation. //If the “Jump” boolean is set to true at any point, the m_Animator plays the animation. However, if it is ever set to false, the animation would return to the appropriate state (“Idle”). //This script enables and disables this boolean in this case by listening for the mouse click or a tap of the screen.
using UnityEngine;
public class Example : MonoBehaviour { //Fetch the Animator Animator m_Animator; // Use this for deciding if the GameObject can jump or not bool m_Jump;
void Start() { //This gets the Animator, which should be attached to the GameObject you are intending to animate. m_Animator = gameObject.GetComponent<Animator>(); // The GameObject cannot jump m_Jump = false; }
void Update() { //Click the mouse or tap the screen to change the animation if (Input.GetMouseButtonDown(0)) m_Jump = true;
//Otherwise the GameObject cannot jump. else m_Jump = false;
//If the GameObject is not jumping, send that the Boolean “Jump” is false to the Animator. The jump animation does not play. if (m_Jump == false) m_Animator.SetBool("Jump", false);
//The GameObject is jumping, so send the Boolean as enabled to the Animator. The jump animation plays. if (m_Jump == true) m_Animator.SetBool("Jump", true); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.