RootMotion.FinalIK.IKSolver.SetIKPosition C# (CSharp) Method

SetIKPosition() public method

Sets the %IK position. NOTE: You are welcome to set IKPosition directly, this method is here only to match the Unity's built in %IK API.
public SetIKPosition ( Vector3 position ) : void
position UnityEngine.Vector3
return void
		public void SetIKPosition(Vector3 position) {
			IKPosition = position;
		}