fix: do not strip invisible elements from array (#9844)

This commit is contained in:
David Luzar
2025-08-12 11:56:11 +02:00
committed by GitHub
parent 54c148f390
commit dda3affcb0
9 changed files with 104 additions and 46 deletions

View File

@@ -261,13 +261,13 @@ export const loadScene = async (
{
repairBindings: true,
refreshDimensions: false,
deleteEmptyTextElements: true,
deleteInvisibleElements: true,
},
);
} else {
data = restore(localDataState || null, null, null, {
repairBindings: true,
deleteEmptyTextElements: true,
deleteInvisibleElements: true,
});
}