mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add IKModifier3D
This commit is contained in:
parent
08705259f2
commit
bf22eb25e3
69 changed files with 6066 additions and 179 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue