Merge pull request #27453 from KoBeWi/glhf_scene_root
Use filename for scene root of imported models
This commit is contained in:
commit
6ee5f7c881
1 changed files with 4 additions and 1 deletions
|
@ -1290,7 +1290,10 @@ Error ResourceImporterScene::import(const String &p_source_file, const String &p
|
||||||
Object::cast_to<Spatial>(scene)->scale(Vector3(root_scale, root_scale, root_scale));
|
Object::cast_to<Spatial>(scene)->scale(Vector3(root_scale, root_scale, root_scale));
|
||||||
}
|
}
|
||||||
|
|
||||||
scene->set_name(p_options["nodes/root_name"]);
|
if (p_options["nodes/root_name"] != "Scene Root")
|
||||||
|
scene->set_name(p_options["nodes/root_name"]);
|
||||||
|
else
|
||||||
|
scene->set_name(p_save_path.get_file().get_basename());
|
||||||
|
|
||||||
err = OK;
|
err = OK;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue