diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-16 14:41:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-16 14:41:42 +0100 |
commit | 6d2a7cb46d6e839a4780cc72f731e8c2629f7ba3 (patch) | |
tree | 80b090f1179a6dd5f1211af101900162d052b627 /editor/editor_data.h | |
parent | 7445695fd1c22f3beed3074fd2a39f0f6d8a24f6 (diff) | |
parent | 3b4f5f8a04f21d94bb40aeef8dc1240953e9b8fc (diff) |
Merge pull request #68709 from MewPurPur/instance-begone-part3
Remove more instances of 'instance' being used as a verb
Diffstat (limited to 'editor/editor_data.h')
-rw-r--r-- | editor/editor_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_data.h b/editor/editor_data.h index 4f1740d4f0..aad00f3ff8 100644 --- a/editor/editor_data.h +++ b/editor/editor_data.h @@ -181,7 +181,7 @@ public: void restore_editor_global_states(); void add_custom_type(const String &p_type, const String &p_inherits, const Ref<Script> &p_script, const Ref<Texture2D> &p_icon); - Variant instance_custom_type(const String &p_type, const String &p_inherits); + Variant instantiate_custom_type(const String &p_type, const String &p_inherits); void remove_custom_type(const String &p_type); const HashMap<String, Vector<CustomType>> &get_custom_types() const { return custom_types; } const CustomType *get_custom_type_by_name(const String &p_name) const; |