1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #70131 from rune-scape/preload-type-regression

Fix preload type regression
This commit is contained in:
Rémi Verschelde
2022-12-16 00:31:26 +01:00
committed by GitHub

View File

@@ -4027,7 +4027,8 @@ GDScriptParser::DataType GDScriptAnalyzer::type_from_variant(const Variant &p_va
found = found->get_member(E).m_class;
}
result = found->get_datatype();
result.class_type = found;
result.script_path = ref->get_parser()->script_path;
} else {
result.kind = GDScriptParser::DataType::SCRIPT;
result.native_type = scr->get_instance_base_type();