diff options
author | Ferenc Arn <tagcup@yahoo.com> | 2017-11-16 21:09:00 -0500 |
---|---|---|
committer | Ferenc Arn <tagcup@yahoo.com> | 2017-11-17 11:01:41 -0500 |
commit | d28763a4c1792dc00fde3d151eaea54f9cf2b8a9 (patch) | |
tree | 7abd311b6e672829bd751fbf4d9135b60f2f9913 /scene/3d/visibility_notifier.h | |
parent | b44cb4e3b9b573a3cbbd6f71aff81e6c3465d84b (diff) | |
download | redot-engine-d28763a4c1792dc00fde3d151eaea54f9cf2b8a9.tar.gz |
Rename Rect3 to AABB.
Fixes #12973.
Diffstat (limited to 'scene/3d/visibility_notifier.h')
-rw-r--r-- | scene/3d/visibility_notifier.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/3d/visibility_notifier.h b/scene/3d/visibility_notifier.h index 0b83e0534e..fc06cf5aec 100644 --- a/scene/3d/visibility_notifier.h +++ b/scene/3d/visibility_notifier.h @@ -39,7 +39,7 @@ class VisibilityNotifier : public Spatial { Set<Camera *> cameras; - Rect3 aabb; + AABB aabb; protected: virtual void _screen_enter() {} @@ -53,8 +53,8 @@ protected: void _exit_camera(Camera *p_camera); public: - void set_aabb(const Rect3 &p_aabb); - Rect3 get_aabb() const; + void set_aabb(const AABB &p_aabb); + AABB get_aabb() const; bool is_on_screen() const; VisibilityNotifier(); |