2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 15:01:49 +00:00
<class name= "VisibilityNotifier2D" inherits= "Node2D" version= "3.2" >
2017-09-12 20:42:36 +00:00
<brief_description >
2020-04-17 20:04:19 +00:00
Detects approximately when the node is visible on screen.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2017-09-16 16:09:13 +00:00
The VisibilityNotifier2D detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a viewport.
2020-04-17 20:04:19 +00:00
[b]Note:[/b] VisibilityNotifier2D uses an approximate heuristic for performance reasons. If you need exact visibility checking, use another method such as adding an [Area2D] node as a child of a [Camera2D] node.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "is_on_screen" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the bounding rectangle is on the screen.
2019-06-21 23:04:47 +00: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 20:42:36 +00:00
</description>
</method>
</methods>
<members >
2019-06-29 10:38:01 +00:00
<member name= "rect" type= "Rect2" setter= "set_rect" getter= "get_rect" default= "Rect2( -10, -10, 20, 20 )" >
2017-09-16 16:09:13 +00:00
The VisibilityNotifier2D's bounding rectangle.
2017-09-12 20:42:36 +00:00
</member>
</members>
<signals >
<signal name= "screen_entered" >
<description >
Emitted when the VisibilityNotifier2D enters the screen.
</description>
</signal>
<signal name= "screen_exited" >
<description >
Emitted when the VisibilityNotifier2D exits the screen.
</description>
</signal>
<signal name= "viewport_entered" >
2018-08-31 19:12:35 +00:00
<argument index= "0" name= "viewport" type= "Viewport" >
2017-09-12 20:42:36 +00:00
</argument>
<description >
Emitted when the VisibilityNotifier2D enters a [Viewport]'s view.
</description>
</signal>
<signal name= "viewport_exited" >
2018-08-31 19:12:35 +00:00
<argument index= "0" name= "viewport" type= "Viewport" >
2017-09-12 20:42:36 +00:00
</argument>
<description >
Emitted when the VisibilityNotifier2D exits a [Viewport]'s view.
</description>
</signal>
</signals>
<constants >
</constants>
</class>