diff options
| author | Juan Linietsky | 2015-01-04 21:16:40 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-01-04 21:16:40 -0300 |
| commit | 8c4dd8de3919b789eac1a0f030563008bdcd44f5 (patch) | |
| tree | 63232bc8047dec17fea773093f156534a562e90a /servers/physics/physics_server_sw.cpp | |
| parent | a8bcb96ad4c940c93d3fd561ddd29ce38b529303 (diff) | |
| download | godot-8c4dd8de3919b789eac1a0f030563008bdcd44f5.tar.gz godot-8c4dd8de3919b789eac1a0f030563008bdcd44f5.tar.zst godot-8c4dd8de3919b789eac1a0f030563008bdcd44f5.zip | |
-WIP to add proper key swapping according to keyboard layout
-fix with non working removal of collision exception in 3D physics
Diffstat (limited to '')
| -rw-r--r-- | servers/physics/physics_server_sw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/physics/physics_server_sw.cpp b/servers/physics/physics_server_sw.cpp index 510a6ea93..cfe5a73ce 100644 --- a/servers/physics/physics_server_sw.cpp +++ b/servers/physics/physics_server_sw.cpp @@ -770,7 +770,7 @@ void PhysicsServerSW::body_remove_collision_exception(RID p_body, RID p_body_b) BodySW *body = body_owner.get(p_body); ERR_FAIL_COND(!body); - body->remove_exception(p_body); + body->remove_exception(p_body_b); }; |
