Merge pull request #44640 from nekomatata/joint2d_update_body_transforms

Update body transforms on joint2D setup
This commit is contained in:
Rémi Verschelde 2020-12-25 14:59:53 +01:00 committed by GitHub
commit 7d972b8c67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -90,6 +90,14 @@ void Joint2D::_update_joint(bool p_only_free) {
warning = String();
update_configuration_warning();
if (body_a) {
body_a->force_update_transform();
}
if (body_b) {
body_b->force_update_transform();
}
joint = _configure_joint(body_a, body_b);
ERR_FAIL_COND_MSG(!joint.is_valid(), "Failed to configure the joint.");