Added FinalIK

This commit is contained in:
2026-08-12 16:46:38 +03:00
parent 487e0d72ff
commit 1dc80339d4
1124 changed files with 768831 additions and 139 deletions
@@ -0,0 +1,30 @@
using UnityEngine;
using System.Collections;
using RootMotion.FinalIK;
namespace RootMotion.Demos {
/// <summary>
/// Bend goal for FullBodyBipedIK.
/// </summary>
public class FBIKBendGoal: MonoBehaviour {
public FullBodyBipedIK ik; // Refernce to the FBBIK component
public FullBodyBipedChain chain; // Which limb is this bend goal for?
public float weight; // Bend goal weight
void Start() {
Debug.Log("FBIKBendGoal is deprecated, you can now a bend goal from the custom inspector of the FullBodyBipedIK component.");
}
void Update() {
if (ik == null) return;
ik.solver.GetBendConstraint(chain).bendGoal = transform;
ik.solver.GetBendConstraint(chain).weight = weight;
}
}
}