From ff89f649fae46a6632feb7abe784c254e24ef8a2 Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 22 Jan 2026 01:40:28 +0100 Subject: [PATCH] Restore period in loaded node paths --- scene/resources/resource_format_text.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp index 9861e075df..95dd7f63f4 100644 --- a/scene/resources/resource_format_text.cpp +++ b/scene/resources/resource_format_text.cpp @@ -204,6 +204,7 @@ Ref ResourceLoaderText::_parse_node_tag(VariantParser::ResourcePars if (next_tag.fields.has("parent")) { NodePath np = next_tag.fields["parent"]; + np.prepend_period(); PackedInt32Array np_id; if (next_tag.fields.has("parent_id_path")) { np_id = next_tag.fields["parent_id_path"];