mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Merge pull request #92931 from TokageItLab/child-physical-bone
Fix unbound child bones of the PhysicalBone aren't modified
This commit is contained in:
commit
3421c9fab5
@ -366,6 +366,20 @@ void PhysicalBoneSimulator3D::_process_modification() {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
ERR_FAIL_COND(skeleton->get_bone_count() != bones.size());
|
||||
for (int i = 0; i < skeleton->get_bone_count(); i++) {
|
||||
if (!bones[i].physical_bone) {
|
||||
continue;
|
||||
}
|
||||
skeleton->set_bone_global_pose(i, bones[i].global_pose);
|
||||
}
|
||||
|
||||
// TODO:
|
||||
// The above method is performance heavy and needs to be improved.
|
||||
// Ideally, the processing of set_bone_global_pose within Skeleton3D should be improved,
|
||||
// but the workaround available now is to convert the global pose to a local pose on the SkeletonModifier side.
|
||||
// However, the follow method needs recursive processing for deformations within PhysicalBoneSimulator3D to account for update order.
|
||||
/*
|
||||
ERR_FAIL_COND(skeleton->get_bone_count() != bones.size());
|
||||
LocalVector<Transform3D> local_poses;
|
||||
for (int i = 0; i < skeleton->get_bone_count(); i++) {
|
||||
@ -376,10 +390,14 @@ void PhysicalBoneSimulator3D::_process_modification() {
|
||||
local_poses.push_back(pt.affine_inverse() * bones[i].global_pose);
|
||||
}
|
||||
for (int i = 0; i < skeleton->get_bone_count(); i++) {
|
||||
if (!bones[i].physical_bone) {
|
||||
continue;
|
||||
}
|
||||
skeleton->set_bone_pose_position(i, local_poses[i].origin);
|
||||
skeleton->set_bone_pose_rotation(i, local_poses[i].basis.get_rotation_quaternion());
|
||||
skeleton->set_bone_pose_scale(i, local_poses[i].basis.get_scale());
|
||||
}
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user