.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the VisibilityNotifier.xml source instead. .. The source is found in doc/classes or modules//doc_classes. .. _class_VisibilityNotifier: VisibilityNotifier ================== **Inherits:** :ref:`Spatial` **<** :ref:`Node` **<** :ref:`Object` **Inherited By:** :ref:`VisibilityEnabler` **Category:** Core Brief Description ----------------- Detects when the node is visible on screen. Member Functions ---------------- +----------------------------+-------------------------------------------------------------------------------------------------+ | :ref:`Rect3` | :ref:`get_aabb` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_on_screen` **(** **)** const | +----------------------------+-------------------------------------------------------------------------------------------------+ | void | :ref:`set_aabb` **(** :ref:`Rect3` rect **)** | +----------------------------+-------------------------------------------------------------------------------------------------+ Signals ------- - **camera_entered** **(** :ref:`Object` camera **)** Emitted when the VisibilityNotifier enters a :ref:`Camera`'s view. - **camera_exited** **(** :ref:`Object` camera **)** Emitted when the VisibilityNotifier exits a :ref:`Camera`'s view. - **screen_entered** **(** **)** Emitted when the VisibilityNotifier enters the screen. - **screen_exited** **(** **)** Emitted when the VisibilityNotifier exits the screen. Member Variables ---------------- - :ref:`Rect3` **aabb** - The VisibilityNotifier's bounding box. Description ----------- The VisibilityNotifier detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a :ref:`Camera`'s view. Member Function Description --------------------------- .. _class_VisibilityNotifier_get_aabb: - :ref:`Rect3` **get_aabb** **(** **)** const Returns the bounding box of the VisibilityNotifier. .. _class_VisibilityNotifier_is_on_screen: - :ref:`bool` **is_on_screen** **(** **)** const If ``true`` the bounding box is on the screen. .. _class_VisibilityNotifier_set_aabb: - void **set_aabb** **(** :ref:`Rect3` rect **)** Set the visibility bounding box of the VisibilityNotifier.