name | 参数名称。 |
id | 参数 ID。 |
value | 新的参数值。 |
dampTime | 阻尼器总时间。 |
deltaTime | 给予阻尼器的增量时间。 |
将浮点值发送到动画器以影响过渡。
在脚本中使用 SetFloat 将浮点值发送到动画器以激活过渡。在动画器中,定义哪些值如何影响某些动画的过渡方式。这在很多情况下都很有用,尤其是在动画循环中,例如在移动动画中可需要根据所施加的按钮压力来决定走或跑。
//The code below shows how to send the horizontal value of the controller or keys to the Animator. //You must assign the same parameter name in the Animator as you set in SetFloat, in this case “horizontalSpeed”. You must also handle the transition conditions in the Animator, to tell which values should cause each transition. //For example, the walking animation triggers when the horizontal value is above 0, and the running animation triggers when the horizontal value reaches past 0.5. Assigning animations to states are also done in the Animator.
using UnityEngine;
public class Example : MonoBehaviour { Animator m_Animator; float m_HorizontalMovement;
void Start() { //Get the animator, which you attach to the GameObject you are intending to animate. m_Animator = gameObject.GetComponent<Animator>(); }
void Update() { //Translate the left and right button presses or the horizontal joystick movements to a float m_HorizontalMovement = Input.GetAxis("Horizontal"); //Sends the value from the horizontal axis input to the animator. Change the settings in the //Animator to define when the character is walking or running m_Animator.SetFloat("horizontalSpeed", m_HorizontalMovement); } }
以上是接受浮点值的动画器的示例设置。
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.