From 1d4e9efc5c6b006c09af7970b187983303678ab5 Mon Sep 17 00:00:00 2001 From: Yeicor <4929005+Yeicor@users.noreply.github.com> Date: Sun, 12 May 2024 13:26:20 +0200 Subject: [PATCH] dev --- frontend/misc/gltf.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/misc/gltf.ts b/frontend/misc/gltf.ts index 353ceac..28dcf07 100644 --- a/frontend/misc/gltf.ts +++ b/frontend/misc/gltf.ts @@ -56,7 +56,8 @@ export async function mergePartial(url: string, name: string, document: Document await newDoc.transform(setNames(name)); // Merge the new document into the current one - return mergeDocuments(document, newDoc); + mergeDocuments(document, newDoc); + return document; } export async function mergeFinalize(document: Document): Promise {