diff options
author | AndreaCatania <info@andreacatania.com> | 2017-10-24 18:10:30 +0200 |
---|---|---|
committer | Andrea Catania <info@andreacatania.com> | 2018-05-11 03:23:09 +0200 |
commit | 5f66734d2d70951b273a078a3ee20e406cf0f84d (patch) | |
tree | 689a85b054958619613b69e8299142bd461b58b3 /modules/bullet/bullet_physics_server.cpp | |
parent | a415efa4b749da90c86db5ac4664491e2ee125dd (diff) | |
download | redot-engine-5f66734d2d70951b273a078a3ee20e406cf0f84d.tar.gz |
Implemented physics material
Hidden a function
Fixed travis static check
Diffstat (limited to 'modules/bullet/bullet_physics_server.cpp')
-rw-r--r-- | modules/bullet/bullet_physics_server.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/bullet/bullet_physics_server.cpp b/modules/bullet/bullet_physics_server.cpp index 6246a295ec..a387c26aaf 100644 --- a/modules/bullet/bullet_physics_server.cpp +++ b/modules/bullet/bullet_physics_server.cpp @@ -643,6 +643,20 @@ float BulletPhysicsServer::body_get_param(RID p_body, BodyParameter p_param) con return body->get_param(p_param); } +void BulletPhysicsServer::body_set_combine_mode(RID p_body, BodyParameter p_param, CombineMode p_mode) { + RigidBodyBullet *body = rigid_body_owner.get(p_body); + ERR_FAIL_COND(!body); + + body->set_combine_mode(p_param, p_mode); +} + +PhysicsServer::CombineMode BulletPhysicsServer::body_get_combine_mode(RID p_body, BodyParameter p_param) const { + RigidBodyBullet *body = rigid_body_owner.get(p_body); + ERR_FAIL_COND_V(!body, COMBINE_MODE_INHERIT); + + return body->get_combine_mode(p_param); +} + void BulletPhysicsServer::body_set_kinematic_safe_margin(RID p_body, real_t p_margin) { RigidBodyBullet *body = rigid_body_owner.get(p_body); ERR_FAIL_COND(!body); |