コード例 #1
0
ファイル: Jumper.cs プロジェクト: dqtoy/KoalaRescue
 /// <summary>
 /// Updates all mecanim animators.
 /// </summary>
 protected override void UpdateAllMecanimAnimators()
 {
     MMAnimator.UpdateAnimatorBoolIfExists(_animator, "Grounded", _grounded);
     MMAnimator.UpdateAnimatorBoolIfExists(_animator, "Jumping", _jumping);
     MMAnimator.UpdateAnimatorFloatIfExists(_animator, "VerticalSpeed", _rigidbodyInterface.Velocity.y);
 }