2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-03-30 18:22:57 +02:00
<class name= "VisibilityNotifier3D" inherits= "Node3D" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-04-17 22:04:19 +02:00
Detects approximately when the node is visible on screen.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-03-30 18:22:57 +02:00
The VisibilityNotifier3D detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a [Camera3D]'s view.
2020-04-17 22:04:19 +02:00
[b]Note:[/b] VisibilityNotifier3D uses an approximate heuristic for performance reasons. It doesn't take walls and other occlusion into account. If you need exact visibility checking, use another method such as adding an [Area3D] node as a child of a [Camera3D] node.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "is_on_screen" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the bounding box is on the screen.
2019-06-22 01:04:47 +02:00
[b]Note:[/b] It takes one frame for the node's visibility to be assessed once added to the scene tree, so this method will return [code]false[/code] right after it is instantiated, even if it will be on screen in the draw pass.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "aabb" type= "AABB" setter= "set_aabb" getter= "get_aabb" default= "AABB( -1, -1, -1, 2, 2, 2 )" >
2020-03-30 18:22:57 +02:00
The VisibilityNotifier3D's bounding box.
2017-09-12 22:42:36 +02:00
</member>
</members>
<signals >
<signal name= "camera_entered" >
2020-03-30 18:22:57 +02:00
<argument index= "0" name= "camera" type= "Camera3D" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-03-30 18:22:57 +02:00
Emitted when the VisibilityNotifier3D enters a [Camera3D]'s view.
2017-09-12 22:42:36 +02:00
</description>
</signal>
<signal name= "camera_exited" >
2020-03-30 18:22:57 +02:00
<argument index= "0" name= "camera" type= "Camera3D" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-03-30 18:22:57 +02:00
Emitted when the VisibilityNotifier3D exits a [Camera3D]'s view.
2017-09-12 22:42:36 +02:00
</description>
</signal>
<signal name= "screen_entered" >
<description >
2020-03-30 18:22:57 +02:00
Emitted when the VisibilityNotifier3D enters the screen.
2017-09-12 22:42:36 +02:00
</description>
</signal>
<signal name= "screen_exited" >
<description >
2020-03-30 18:22:57 +02:00
Emitted when the VisibilityNotifier3D exits the screen.
2017-09-12 22:42:36 +02:00
</description>
</signal>
</signals>
<constants >
</constants>
</class>