From a08fc442a07be2c2c668a6b6a92a501522115cd4 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 6 Feb 2022 19:02:53 +0100 Subject: Fix script editor errors with CustomCallables --- core/object/callable_method_pointer.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'core/object/callable_method_pointer.h') diff --git a/core/object/callable_method_pointer.h b/core/object/callable_method_pointer.h index 53410a9acf..3cd9ad3819 100644 --- a/core/object/callable_method_pointer.h +++ b/core/object/callable_method_pointer.h @@ -51,6 +51,14 @@ protected: void _setup(uint32_t *p_base_ptr, uint32_t p_ptr_size); public: + virtual StringName get_method() const { +#ifdef DEBUG_METHODS_ENABLED + return StringName(text); +#else + return StringName(); +#endif + } + #ifdef DEBUG_METHODS_ENABLED void set_text(const char *p_text) { text = p_text; -- cgit v1.2.3