diff options
author | kobewi <kobewi4e@gmail.com> | 2022-08-02 15:39:56 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-08-02 15:39:56 +0200 |
commit | 9a2758e374ae674adafca178ab726fb7b5cdbd5a (patch) | |
tree | 341e940956122684482313684c5e70ad2f6e3fe2 | |
parent | 4f8d31fc68c1b2276cbcbb62a308d59313b9fac6 (diff) |
Fix GraphNode slot list
-rw-r--r-- | scene/gui/graph_node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 92016ca42e..c5054525a7 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -1051,6 +1051,7 @@ void GraphNode::_bind_methods() { ADD_GROUP("BiDi", ""); ADD_PROPERTY(PropertyInfo(Variant::INT, "text_direction", PROPERTY_HINT_ENUM, "Auto,Left-to-Right,Right-to-Left,Inherited"), "set_text_direction", "get_text_direction"); ADD_PROPERTY(PropertyInfo(Variant::STRING, "language", PROPERTY_HINT_LOCALE_ID, ""), "set_language", "get_language"); + ADD_GROUP("", ""); ADD_SIGNAL(MethodInfo("position_offset_changed")); ADD_SIGNAL(MethodInfo("slot_updated", PropertyInfo(Variant::INT, "idx"))); |