You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Allow retrieval of FuncRef function string
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user