summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorHendrik Brucker <hendrik.brucker@mail.de>2022-04-30 03:56:57 +0200
committerHendrik Brucker <hendrik.brucker@mail.de>2022-04-30 03:56:57 +0200
commit6d876baf60d624d65737583c4d88d5c86c6e12cc (patch)
tree472599d934e5a9cc08496ec5291e8ca6a023fc4f /doc/classes
parentef42b686adde506163f0a3702f5dc6fe80385da0 (diff)
Improve the VisualShader/VisualScript editor UI
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/GraphNode.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/classes/GraphNode.xml b/doc/classes/GraphNode.xml
index 173da63a15..5f0dca0402 100644
--- a/doc/classes/GraphNode.xml
+++ b/doc/classes/GraphNode.xml
@@ -119,6 +119,13 @@
Returns the right (output) type of the slot [code]idx[/code].
</description>
</method>
+ <method name="is_slot_draw_stylebox" qualifiers="const">
+ <return type="bool" />
+ <argument index="0" name="idx" type="int" />
+ <description>
+ Returns true if the background [StyleBox] of the slot [code]idx[/code] is drawn.
+ </description>
+ </method>
<method name="is_slot_enabled_left" qualifiers="const">
<return type="bool" />
<argument index="0" name="idx" type="int" />
@@ -152,6 +159,7 @@
<argument index="6" name="color_right" type="Color" />
<argument index="7" name="custom_left" type="Texture2D" default="null" />
<argument index="8" name="custom_right" type="Texture2D" default="null" />
+ <argument index="9" name="enable" type="bool" default="true" />
<description>
Sets properties of the slot with ID [code]idx[/code].
If [code]enable_left[/code]/[code]right[/code], a port will appear and the slot will be able to be connected from this side.
@@ -178,6 +186,14 @@
Sets the [Color] of the right (output) side of the slot [code]idx[/code] to [code]color_right[/code].
</description>
</method>
+ <method name="set_slot_draw_stylebox">
+ <return type="void" />
+ <argument index="0" name="idx" type="int" />
+ <argument index="1" name="draw_stylebox" type="bool" />
+ <description>
+ Toggles the background [StyleBox] of the slot [code]idx[/code].
+ </description>
+ </method>
<method name="set_slot_enabled_left">
<return type="void" />
<argument index="0" name="idx" type="int" />
@@ -301,6 +317,8 @@
<theme_item name="title_color" data_type="color" type="Color" default="Color(0.875, 0.875, 0.875, 1)">
Color of the title text.
</theme_item>
+ <theme_item name="close_h_offset" data_type="constant" type="int" default="22">
+ </theme_item>
<theme_item name="close_offset" data_type="constant" type="int" default="22">
The vertical offset of the close button.
</theme_item>
@@ -343,5 +361,8 @@
<theme_item name="selected_frame" data_type="style" type="StyleBox">
The background used when the [GraphNode] is selected.
</theme_item>
+ <theme_item name="slot" data_type="style" type="StyleBox">
+ The [StyleBox] used for each slot of the [GraphNode].
+ </theme_item>
</theme_items>
</class>