mirror of
https://github.com/godotengine/godot.git
synced 2024-11-12 23:24:26 +00:00
[4.2] Fix crash when previewing a scene with a mesh as the root node
(cherry picked from commit 424a6a6bf5
)
This commit is contained in:
parent
611c435dab
commit
7c02f5cd5c
@ -310,7 +310,10 @@ void SceneImportSettings::_fill_scene(Node *p_node, TreeItem *p_parent_item) {
|
||||
Ref<ImporterMesh> editor_mesh = src_mesh_node->get_mesh();
|
||||
mesh_node->set_mesh(editor_mesh->get_mesh());
|
||||
}
|
||||
|
||||
// Replace the original mesh node in the scene tree with the new one.
|
||||
if (unlikely(p_node == scene)) {
|
||||
scene = mesh_node;
|
||||
}
|
||||
p_node->replace_by(mesh_node);
|
||||
memdelete(p_node);
|
||||
p_node = mesh_node;
|
||||
|
Loading…
Reference in New Issue
Block a user