1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-21 14:57:09 +00:00

Add IKModifier3D

This commit is contained in:
Silc Lizard (Tokage) Renew
2025-09-10 09:46:41 +09:00
parent 08705259f2
commit bf22eb25e3
69 changed files with 6066 additions and 179 deletions

View File

@@ -2127,6 +2127,14 @@ PackedVector3Array Curve3D::get_baked_up_vectors() const {
return baked_up_vector_cache;
}
Vector<real_t> Curve3D::get_baked_dist_cache() const {
if (baked_cache_dirty) {
_bake();
}
return baked_dist_cache;
}
Vector3 Curve3D::get_closest_point(const Vector3 &p_to_point) const {
// Brute force method.