You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Prevent cyclic reference between script and its members
This commit is contained in:
@@ -6055,7 +6055,7 @@ GDScriptParser::DataType GDScriptParser::_type_from_gdtype(const GDScriptDataTyp
|
||||
result.has_type = true;
|
||||
result.builtin_type = p_gdtype.builtin_type;
|
||||
result.native_type = p_gdtype.native_type;
|
||||
result.script_type = p_gdtype.script_type;
|
||||
result.script_type = Ref<Script>(p_gdtype.script_type);
|
||||
|
||||
switch (p_gdtype.kind) {
|
||||
case GDScriptDataType::UNINITIALIZED: {
|
||||
|
||||
Reference in New Issue
Block a user