diff options
author | Micky <micheledevita2@gmail.com> | 2024-01-03 12:10:11 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-02-29 18:00:54 +0100 |
commit | cd2032a90b7b1a499ccf08fbf62d70e0ac9bb8fa (patch) | |
tree | b14b54af89e1c8c0a090e66a767c2f715415d819 /scene/main/node.h | |
parent | bb6b06c81343073f10cbbd2af515cf0dac1e6549 (diff) | |
download | redot-engine-cd2032a90b7b1a499ccf08fbf62d70e0ac9bb8fa.tar.gz |
Optimise Object's `get_argument_options`
Diffstat (limited to 'scene/main/node.h')
-rw-r--r-- | scene/main/node.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/main/node.h b/scene/main/node.h index b936cdd375..7cc0f7b370 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -626,6 +626,7 @@ public: #ifdef TOOLS_ENABLED String validate_child_name(Node *p_child); String prevalidate_child_name(Node *p_child, StringName p_name); + void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override; #endif static String adjust_name_casing(const String &p_name); @@ -641,8 +642,6 @@ public: bool is_owned_by_parent() const; - void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override; - void clear_internal_tree_resource_paths(); _FORCE_INLINE_ Viewport *get_viewport() const { return data.viewport; } |