diff options
author | fabriceci <fabricecipolla@gmail.com> | 2021-09-28 16:11:17 +0200 |
---|---|---|
committer | fabriceci <fabricecipolla@gmail.com> | 2021-09-28 16:11:17 +0200 |
commit | 32bf7c419c12771e2c2169800718083f3b16d4ea (patch) | |
tree | 94346372875e6b74d33e63891d553f8264687a48 /scene/3d | |
parent | 5aa099aaed359df6ff79fe31616b5601db2a42c5 (diff) |
Sync to physics true by default for AnimatableBody
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/physics_body_3d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/physics_body_3d.h b/scene/3d/physics_body_3d.h index 96f3d7d747..942fcc44c5 100644 --- a/scene/3d/physics_body_3d.h +++ b/scene/3d/physics_body_3d.h @@ -105,7 +105,7 @@ private: Vector3 linear_velocity; Vector3 angular_velocity; - bool sync_to_physics = false; + bool sync_to_physics = true; Transform3D last_valid_transform; |