diff options
author | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2020-09-25 11:44:33 -0400 |
---|---|---|
committer | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2020-09-25 11:54:51 -0400 |
commit | 75154e64a98bc26b7c8fc0934d18b846463b0c58 (patch) | |
tree | 60b973543048dcfc69f763601de6aa2c2c1f0949 | |
parent | 9f8a923b92cc91199dc8a95694242aeda9e6fd49 (diff) |
Allow retrieval of FuncRef function string
-rw-r--r-- | core/func_ref.cpp | 5 | ||||
-rw-r--r-- | core/func_ref.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/func_ref.cpp b/core/func_ref.cpp index 4427d94d2a..893f7f9103 100644 --- a/core/func_ref.cpp +++ b/core/func_ref.cpp @@ -64,6 +64,10 @@ void FuncRef::set_function(const StringName &p_func) { function = p_func; } +StringName FuncRef::get_function() { + return function; +} + bool FuncRef::is_valid() const { if (id.is_null()) { return false; @@ -89,5 +93,6 @@ void FuncRef::_bind_methods() { ClassDB::bind_method(D_METHOD("set_instance", "instance"), &FuncRef::set_instance); ClassDB::bind_method(D_METHOD("set_function", "name"), &FuncRef::set_function); + ClassDB::bind_method(D_METHOD("get_function"), &FuncRef::get_function); ClassDB::bind_method(D_METHOD("is_valid"), &FuncRef::is_valid); } diff --git a/core/func_ref.h b/core/func_ref.h index 6b0b22bab5..75b84e705e 100644 --- a/core/func_ref.h +++ b/core/func_ref.h @@ -46,6 +46,7 @@ public: Variant call_funcv(const Array &p_args); void set_instance(Object *p_obj); void set_function(const StringName &p_func); + StringName get_function(); bool is_valid() const; FuncRef() {} |