diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-09-22 01:03:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-09-22 01:03:56 -0300 |
commit | cf04e1a827cadb597d8cbed534a4cc04a0ada4fc (patch) | |
tree | 3e5197e938d04382ffcf886a12043a898160323e /scene/3d/physics_body.h | |
parent | 048fdc8aeabbd80ba9cc8914ec7f7baa00ad0c3d (diff) | |
download | redot-engine-cf04e1a827cadb597d8cbed534a4cc04a0ada4fc.tar.gz |
-added collision exception to 3D Physics API too
Diffstat (limited to 'scene/3d/physics_body.h')
-rw-r--r-- | scene/3d/physics_body.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/3d/physics_body.h b/scene/3d/physics_body.h index 30a64c802f..442921302e 100644 --- a/scene/3d/physics_body.h +++ b/scene/3d/physics_body.h @@ -53,6 +53,8 @@ public: void set_layer_mask(uint32_t p_mask); uint32_t get_layer_mask() const; + void add_collision_exception_with(Node* p_node); //must be physicsbody + void remove_collision_exception_with(Node* p_node); PhysicsBody(); |