Fix issue with 3D scene drag and drop preview node
This commit is contained in:
parent
1ba920fada
commit
834ccb9698
|
@ -4152,6 +4152,7 @@ Node *Node3DEditorViewport::_sanitize_preview_node(Node *p_node) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Node3DEditorViewport::_create_preview_node(const Vector<String> &files) const {
|
void Node3DEditorViewport::_create_preview_node(const Vector<String> &files) const {
|
||||||
|
bool add_preview = false;
|
||||||
for (int i = 0; i < files.size(); i++) {
|
for (int i = 0; i < files.size(); i++) {
|
||||||
String path = files[i];
|
String path = files[i];
|
||||||
Ref<Resource> res = ResourceLoader::load(path);
|
Ref<Resource> res = ResourceLoader::load(path);
|
||||||
|
@ -4172,9 +4173,13 @@ void Node3DEditorViewport::_create_preview_node(const Vector<String> &files) con
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
add_preview = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (add_preview) {
|
||||||
EditorNode::get_singleton()->get_scene_root()->add_child(preview_node);
|
EditorNode::get_singleton()->get_scene_root()->add_child(preview_node);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
*preview_bounds = _calculate_spatial_bounds(preview_node);
|
*preview_bounds = _calculate_spatial_bounds(preview_node);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue