Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Animator.leftFeetBottomHeight

Switch to Manual
var leftFeetBottomHeight: float;
float leftFeetBottomHeight;
leftFeetBottomHeight as float

Description

Get left foot bottom height.

	void LateUpdate()
	{
		if(animator)
		{
			Vector3 leftFootT = animator.GetIKPosition(AvatarIKGoal.LeftFoot);
			Quaternion leftFootQ = animator.GetIKRotation(AvatarIKGoal.LeftFoot);
			
			Vector3 leftFootH = new Vector3(0, -animator.leftFeetBottomHeight, 0);
			
			Vector3 pos = leftFootT + leftFootQ * leftFootH;
			Debug.Log(pos);
		}
	}