mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix GDScript placeholder fallback
This commit is contained in:
parent
0f3fc93070
commit
7c4c646749
2 changed files with 9 additions and 1 deletions
|
@ -563,7 +563,8 @@ Variant PlaceHolderScriptInstance::property_get_fallback(const StringName &p_nam
|
|||
PlaceHolderScriptInstance::PlaceHolderScriptInstance(ScriptLanguage *p_language, Ref<Script> p_script, Object *p_owner) :
|
||||
owner(p_owner),
|
||||
language(p_language),
|
||||
script(p_script) {
|
||||
script(p_script),
|
||||
build_failed(false) {
|
||||
}
|
||||
|
||||
PlaceHolderScriptInstance::~PlaceHolderScriptInstance() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue