diff options
author | Camille Mohr-Daurat <pouleyKetchoup@gmail.com> | 2021-09-28 17:11:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 17:11:17 -0700 |
commit | 341b532d5e7ac10fa1e8006e0a994f55cb027bb8 (patch) | |
tree | add588d90d472e99eff712f4f20cc3dc2e3c316f /servers/physics_server_3d.h | |
parent | f72419d1525f2e5fe08f81a8fe06af3831c71c3e (diff) | |
parent | ed1ba5093f6a9d10adb5da74580bcb4469159214 (diff) | |
download | redot-engine-341b532d5e7ac10fa1e8006e0a994f55cb027bb8.tar.gz |
Merge pull request #52754 from nekomatata/dynamic-body-modes
Clarify RigidDynamicBody modes
Diffstat (limited to 'servers/physics_server_3d.h')
-rw-r--r-- | servers/physics_server_3d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/physics_server_3d.h b/servers/physics_server_3d.h index e43a59ec93..14d395e714 100644 --- a/servers/physics_server_3d.h +++ b/servers/physics_server_3d.h @@ -360,7 +360,7 @@ public: BODY_MODE_STATIC, BODY_MODE_KINEMATIC, BODY_MODE_DYNAMIC, - BODY_MODE_DYNAMIC_LOCKED, + BODY_MODE_DYNAMIC_LINEAR, }; virtual RID body_create() = 0; |