mirror of
https://github.com/godotengine/godot.git
synced 2025-02-16 07:40:36 +00:00
Merge pull request #93452 from raulsntos/core/placeholder-has-method
Lookup method also in base scripts of a PlaceHolderScriptInstance
This commit is contained in:
commit
ded2a4ae54
@ -697,7 +697,13 @@ bool PlaceHolderScriptInstance::has_method(const StringName &p_method) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (script.is_valid()) {
|
if (script.is_valid()) {
|
||||||
return script->has_method(p_method);
|
Ref<Script> scr = script;
|
||||||
|
while (scr.is_valid()) {
|
||||||
|
if (scr->has_method(p_method)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
scr = scr->get_base_script();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user