报告 TSCN 和 TRES 文件中显示顺序错误的部分。
Godot 要求各个部分按以下顺序显示:
[gd_scene] 或 [gd_resource] - 文件描述符[ext_resource] - 外部资源[sub_resource] - 内部资源[node] - 节点[connection] - 连接错误顺序示例:
[gd_scene format=3] [node name="Root" type="Node"] [ext_resource path="res://script.gd" type="Script" id=1] ; ERROR: ext_resource after node
正确顺序示例:
[gd_scene format=3] [ext_resource path="res://script.gd" type="Script" id=1] [node name="Root" type="Node"]