Allow retrieval of FuncRef function string
This commit is contained in:
parent
9f8a923b92
commit
75154e64a9
2 changed files with 6 additions and 0 deletions
|
@ -64,6 +64,10 @@ void FuncRef::set_function(const StringName &p_func) {
|
||||||
function = p_func;
|
function = p_func;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StringName FuncRef::get_function() {
|
||||||
|
return function;
|
||||||
|
}
|
||||||
|
|
||||||
bool FuncRef::is_valid() const {
|
bool FuncRef::is_valid() const {
|
||||||
if (id.is_null()) {
|
if (id.is_null()) {
|
||||||
return false;
|
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_instance", "instance"), &FuncRef::set_instance);
|
||||||
ClassDB::bind_method(D_METHOD("set_function", "name"), &FuncRef::set_function);
|
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);
|
ClassDB::bind_method(D_METHOD("is_valid"), &FuncRef::is_valid);
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,7 @@ public:
|
||||||
Variant call_funcv(const Array &p_args);
|
Variant call_funcv(const Array &p_args);
|
||||||
void set_instance(Object *p_obj);
|
void set_instance(Object *p_obj);
|
||||||
void set_function(const StringName &p_func);
|
void set_function(const StringName &p_func);
|
||||||
|
StringName get_function();
|
||||||
bool is_valid() const;
|
bool is_valid() const;
|
||||||
|
|
||||||
FuncRef() {}
|
FuncRef() {}
|
||||||
|
|
Loading…
Reference in a new issue