diff options
author | Jakub Grzesik <kubecz3k@gmail.com> | 2017-10-23 14:31:18 +0200 |
---|---|---|
committer | Jakub Grzesik <kubecz3k@gmail.com> | 2017-10-23 14:31:58 +0200 |
commit | 8f054d519fe4c7b503922bfcd6d2770c2a83ff01 (patch) | |
tree | d8ca3a117bea94150e094e774a0ee263c5d6278c /scene/3d/ray_cast.h | |
parent | eda5f168212b7e99bb0efcb80b935b2c2b90b12d (diff) | |
download | redot-engine-8f054d519fe4c7b503922bfcd6d2770c2a83ff01.tar.gz |
missing set/get_collision_mask_bit() for RayCast
in the same fastion how it's implemented in Area or Bodies
Diffstat (limited to 'scene/3d/ray_cast.h')
-rw-r--r-- | scene/3d/ray_cast.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/3d/ray_cast.h b/scene/3d/ray_cast.h index cd3cf3c913..cac1596264 100644 --- a/scene/3d/ray_cast.h +++ b/scene/3d/ray_cast.h @@ -72,6 +72,9 @@ public: void set_collision_mask(uint32_t p_mask); uint32_t get_collision_mask() const; + void set_collision_mask_bit(int p_bit, bool p_value); + bool get_collision_mask_bit(int p_bit) const; + void set_type_mask(uint32_t p_mask); uint32_t get_type_mask() const; |