From 34288b24a6d43d0f9a314f4aaccbebe454f9f23e Mon Sep 17 00:00:00 2001 From: George Marques Date: Tue, 12 Oct 2021 10:41:04 -0300 Subject: GDScript: Fix typed array with custom classes --- modules/gdscript/gdscript_analyzer.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/gdscript/gdscript_analyzer.cpp') diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp index fd7664049a..9ae8323680 100644 --- a/modules/gdscript/gdscript_analyzer.cpp +++ b/modules/gdscript/gdscript_analyzer.cpp @@ -470,6 +470,7 @@ GDScriptParser::DataType GDScriptAnalyzer::resolve_datatype(GDScriptParser::Type GDScriptParser::DataType container_type = resolve_datatype(p_type->container_type); if (container_type.kind != GDScriptParser::DataType::VARIANT) { + container_type.is_meta_type = false; result.set_container_element_type(container_type); } } -- cgit v1.2.3