Remove experimental flag from graph nodes
This commit is contained in:
@@ -252,14 +252,6 @@ Control::CursorShape GraphEdit::get_cursor_shape(const Point2 &p_pos) const {
|
||||
return Control::get_cursor_shape(p_pos);
|
||||
}
|
||||
|
||||
PackedStringArray GraphEdit::get_configuration_warnings() const {
|
||||
PackedStringArray warnings = Control::get_configuration_warnings();
|
||||
|
||||
warnings.push_back(RTR("Please be aware that GraphEdit and GraphNode will undergo extensive refactoring in a future 4.x version involving compatibility-breaking API changes."));
|
||||
|
||||
return warnings;
|
||||
}
|
||||
|
||||
Error GraphEdit::connect_node(const StringName &p_from, int p_from_port, const StringName &p_to, int p_to_port, bool p_keep_alive) {
|
||||
ERR_FAIL_NULL_V_MSG(connections_layer, FAILED, "connections_layer is missing.");
|
||||
|
||||
|
||||
@@ -405,8 +405,6 @@ public:
|
||||
|
||||
virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const override;
|
||||
|
||||
PackedStringArray get_configuration_warnings() const override;
|
||||
|
||||
void key_input(const Ref<InputEvent> &p_ev);
|
||||
|
||||
// This method has to be public (for undo redo).
|
||||
|
||||
Reference in New Issue
Block a user