UnityAPI手册-2019.4官网版
文集大纲加载中……
本文档使用 MrDoc 发布
-
+
首页
Animator.SetBool
# [Animator](Animator.html).SetBool public void **SetBool** (string **name**, bool **value**); public void **SetBool** (int **id**, bool **value**); ## 参数 | name | 参数名称。 | | ------- | -------------- | | id | 参数 ID。 | | value | 新的参数值。 | ## 描述 设置给定布尔参数的值。 通过脚本使用 Animator.SetBool 将布尔值传递给 [](../Manual/class-AnimatorController.html)。 用于触发动画器状态间的过渡。例如,通过将“alive”布尔值设置为 false 来触发死亡动画。有关设置动画器的更多信息,请参阅[动画](../Manual/AnimatorControllerCreation.html)。 注意:可以按名称或 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); } } ```
da
2022年5月24日 00:07
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码