Did Godot renders hided Objects?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By samu_g05tz

Did Godot renders Object, which are hided with hide()?

:bust_in_silhouette: Reply From: Calinou

Godot doesn’t render objects whose visible property is set to false, in both 2D and 3D. visible is set to false when you call hide().

However, it will still perform animation skinning on hidden objects, as the result of skinning may still be used for gameplay purposes. If you want to prevent this, use the VisibilityEnabler or VisibilityNotifier nodes.