Work in progress
Godot documentation is being updated to reflect the latest changes in version
4.0
. Some documentation pages may
still state outdated information. This banner will tell you if you're reading one of such pages.
The contents of this page are up to date. If you can still find outdated information, please open an issue.
VisibleOnScreenNotifier3D¶
Inherits: VisualInstance3D < Node3D < Node < Object
Inherited By: VisibleOnScreenEnabler3D
Detects approximately when the node is visible on screen.
Description¶
The VisibleOnScreenNotifier3D 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.
If you want nodes to be disabled automatically when they exit the screen, use VisibleOnScreenEnabler3D instead.
Note: VisibleOnScreenNotifier3D uses the render culling code to determine whether it's visible on screen, which also means that its Node3D.visible must be true
to work correctly.
Properties¶
|
Methods¶
is_on_screen ( ) const |
Signals¶
screen_entered ( )
Emitted when the VisibleOnScreenNotifier3D enters the screen.
screen_exited ( )
Emitted when the VisibleOnScreenNotifier3D exits the screen.
Property Descriptions¶
AABB aabb = AABB(-1, -1, -1, 2, 2, 2)
The VisibleOnScreenNotifier3D's bounding box.
Method Descriptions¶
bool is_on_screen ( ) const
If true
, the bounding box is on the screen.
Note: It takes one frame for the node's visibility to be assessed once added to the scene tree, so this method will return false
right after it is instantiated, even if it will be on screen in the draw pass.