1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

GDScript: Fix message when calling non-tool function in tool mode

This commit is contained in:
Danil Alexeev
2024-07-18 16:42:54 +03:00
parent db76de5de8
commit 2d8f6c1b1d
4 changed files with 57 additions and 47 deletions

View File

@@ -509,7 +509,7 @@ private:
} profile;
#endif
_FORCE_INLINE_ String _get_call_error(const Callable::CallError &p_err, const String &p_where, const Variant **argptrs) const;
_FORCE_INLINE_ String _get_call_error(const String &p_where, const Variant **p_argptrs, const Variant &p_ret, const Callable::CallError &p_err) const;
Variant _get_default_variant_for_data_type(const GDScriptDataType &p_data_type);
public: