Is there a difference between VISIBLE DISABLED and ALPHA 0?

In my GUI I often use invisible boxes to group nodes. What is the recommended way of doing it? Is there any difference in performance?

  • Visible = DISABLED
  • Alpha = 0

It seems like these two options are treated the same:

1 Like

A node can be enabled but invisible. This is useful if you use the node as a click-zone or as a “folder”—a container for other nodes.
In such cases, you usually don’t want the nodes to be rendered (visible) even if they are enabled (i.e., is_enabled returns true and they can be animated).

4 Likes