Use filename for scene root of imported models
This commit is contained in:
parent
6574c557c9
commit
82fadde680
|
@ -1256,7 +1256,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 New Issue