Change physics joint tests to freeze bodies as kinematic #1177
+2
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The joint tests found in
3d/physics_tests/test/functional/test_joints.gd
are currently behaving a bit strange when you use Jolt Physics as the 3D physics engine, while having all the test options set to their default value:Static_WithSleeping.mp4
The reason for this seems to be related to the fact that the upper body (
parent_body
) in this test is by default set to usefreeze = true
, which by default usesfreeze_mode = RigidBody3D.FREEZE_MODE_STATIC
. This effectively turns the body into aStaticBody3D
, which as the name suggests isn't really meant to be moved, and thus have no linear or angular velocities associated with it, which will cause problems when connected to joints, as solving for the underlying joint constraints (in either physics engine) involves the bodies' velocities.The fact that the lower body just sits there seems to be related to the lower body going to sleep, which we can confirm by disabling sleeping:
Static_WithoutSleeping.mp4
Static bodies in Jolt are always considered to be sleeping, so it makes sense to me why moving the upper body wouldn't wake up the lower body, despite being connected by a constraint. I don't quite understand why this isn't the case for Godot Physics as well though.
Note however that something looks/feels a bit off ("sluggish") with how the lower body behaves even when just disabling sleeping, which as mentioned above is related to there being no velocities associated with the static body.
If we instead change
freeze_mode
toRigidBody3D.FREEZE_MODE_KINEMATIC
, we get this, which works even when leaving sleeping enabled:Kinematic.mp4
This can be reproduced with Godot Physics as well to some degree, although the discrepancy between the two body modes is less pronounced there, which I think is due to the fact that Jolt by default only uses 2 position iterations in its solver, whereas I think Godot Physics solves for both velocity and position in its 16 default solver iterations.
Upping the solver iterations to something like 16 for Jolt makes things behave a bit better, even when using
FREEZE_MODE_STATIC
, but this would be a hack in this case.This PR instead fixes all of this by simply switching
freeze_mode
toFREEZE_MODE_KINEMATIC
in these tests, as it should be.