diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2018-07-25 14:23:26 -0700 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2018-07-27 13:12:34 -0700 |
commit | 2650b8710280a0759d751bc6d81f415a18442142 (patch) | |
tree | 2413d8f9729b26f686bef77fed4032b776da1994 /modules/visual_script/visual_script_editor.h | |
parent | aecc3a444b122efd1001b25893ea7622918e2e22 (diff) | |
download | redot-engine-2650b8710280a0759d751bc6d81f415a18442142.tar.gz |
Carry property hint and hint string through to Visualscript virtual functions.
Diffstat (limited to 'modules/visual_script/visual_script_editor.h')
-rw-r--r-- | modules/visual_script/visual_script_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/visual_script/visual_script_editor.h b/modules/visual_script/visual_script_editor.h index dc9f775864..8bfd147519 100644 --- a/modules/visual_script/visual_script_editor.h +++ b/modules/visual_script/visual_script_editor.h @@ -177,7 +177,7 @@ class VisualScriptEditor : public ScriptEditorBase { void _cancel_connect_node(); void _create_new_node(const String &p_text, const String &p_category, const Vector2 &p_point); - void _selected_new_virtual_method(const String &p_text, const String &p_category, const bool p_connecting = true); + void _selected_new_virtual_method(const String &p_text = String(""), const String &p_category = String(""), const bool p_connecting = true); int error_line; |