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

Update() public method

Updates the %IK solver. Use only if this %IKSolver is not a member of an %IK component or the %IK component has been disabled and you intend to manually control the updating.
public Update ( ) : void
return void
		public void Update() {
			if (OnPreUpdate != null) OnPreUpdate();

			if (firstInitiation) LogWarning("Trying to update IK solver before initiating it. If you intended to disable the IK component to manage it's updating, use ik.Disable() instead of ik.enabled = false, the latter does not guarantee solver initiation.");
			if (!initiated) return;

			OnUpdate();

			if (OnPostUpdate != null) OnPostUpdate();
		}