Parcourir la source

Merge pull request #93452 from raulsntos/core/placeholder-has-method

Lookup method also in base scripts of a PlaceHolderScriptInstance
Rémi Verschelde il y a 1 an
Parent
commit
ded2a4ae54
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. 7 1
      core/object/script_language.cpp

+ 7 - 1
core/object/script_language.cpp

@@ -697,7 +697,13 @@ bool PlaceHolderScriptInstance::has_method(const StringName &p_method) const {
 	}
 
 	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;
 }