Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

VisualShaderNodeFrame

Inherits: VisualShaderNodeResizableBase < VisualShaderNode < Resource < RefCounted < Object

Inherited By: VisualShaderNodeComment

A frame other visual shader nodes can be attached to for better organization.

Description

A rectangular frame that can be used to group visual shader nodes together to improve organization.

Nodes attached to the frame will move with it when it is dragged and it can automatically resize to enclose all attached nodes.

Its title, description and color can be customized.

Properties

PackedInt32Array

attached_nodes

PackedInt32Array()

bool

autoshrink

true

Color

tint_color

Color(0.3, 0.3, 0.3, 0.75)

bool

tint_color_enabled

false

String

title

"Title"

Methods

void

add_attached_node(node: int)

void

remove_attached_node(node: int)


Property Descriptions

PackedInt32Array attached_nodes = PackedInt32Array()

The list of nodes attached to the frame.

Note: The returned array is copied and any changes to it will not update the original property value. See PackedInt32Array for more details.


bool autoshrink = true

  • void set_autoshrink_enabled(value: bool)

  • bool is_autoshrink_enabled()

If true, the frame will automatically resize to enclose all attached nodes.


Color tint_color = Color(0.3, 0.3, 0.3, 0.75)

  • void set_tint_color(value: Color)

  • Color get_tint_color()

The color of the frame when tint_color_enabled is true.


bool tint_color_enabled = false

  • void set_tint_color_enabled(value: bool)

  • bool is_tint_color_enabled()

If true, the frame will be tinted with the color specified in tint_color.


String title = "Title"

The title of the node.


Method Descriptions

void add_attached_node(node: int)

Adds a node to the list of nodes attached to the frame. Should not be called directly, use the VisualShader.attach_node_to_frame method instead.


void remove_attached_node(node: int)

Removes a node from the list of nodes attached to the frame. Should not be called directly, use the VisualShader.detach_node_from_frame method instead.


User-contributed notes

Please read the User-contributed notes policy before submitting a comment.