diff options
| author | AndreaCatania | 2017-09-29 17:33:30 +0200 |
|---|---|---|
| committer | AndreaCatania | 2017-09-29 17:33:30 +0200 |
| commit | c56c67db39b619d37c503e41e718f9cda39c3f0e (patch) | |
| tree | 2fa62c7103a09e3c0b2baeface159613ae6d5cba /servers/physics/physics_server_sw.cpp | |
| parent | dee100139008bd4dd8c270da6a7f5aa326a32c25 (diff) | |
| download | godot-c56c67db39b619d37c503e41e718f9cda39c3f0e.tar.gz godot-c56c67db39b619d37c503e41e718f9cda39c3f0e.tar.zst godot-c56c67db39b619d37c503e41e718f9cda39c3f0e.zip | |
Diffstat (limited to 'servers/physics/physics_server_sw.cpp')
| -rw-r--r-- | servers/physics/physics_server_sw.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/servers/physics/physics_server_sw.cpp b/servers/physics/physics_server_sw.cpp index a0c9f9cd4..8cc4929a5 100644 --- a/servers/physics/physics_server_sw.cpp +++ b/servers/physics/physics_server_sw.cpp @@ -914,6 +914,21 @@ bool PhysicsServerSW::body_test_motion(RID p_body, const Transform &p_from, cons return body->get_space()->test_body_motion(body, p_from, p_motion, p_margin, r_result); } +PhysicsDirectBodyState *PhysicsServerSW::body_get_direct_state(RID p_body) { + + BodySW *body = body_owner.get(p_body); + ERR_FAIL_COND_V(!body, NULL); + + if (!doing_sync || body->get_space()->is_locked()) { + + ERR_EXPLAIN("Body state is inaccessible right now, wait for iteration or physics process notification."); + ERR_FAIL_V(NULL); + } + + direct_state->body = body; + return direct_state; +} + /* JOINT API */ RID PhysicsServerSW::joint_create_pin(RID p_body_A, const Vector3 &p_local_A, RID p_body_B, const Vector3 &p_local_B) { |
