You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When exporting a workcell URDF, there is a file dialogue that lets you fill in a filename. Even if you provide a filename, the site editor will export a directory based on the original name of the workcell.
A better use experience would either:
export using the new user-defined name (maybe the original workcell name can be filled in by default?)
use AsyncFileDialog::new().pick_folder() instead of AsyncFileDialog::new().save_file()
Steps to reproduce the bug
Load a workcell and then export it as URDF
The text was updated successfully, but these errors were encountered:
This is probably confusing UX but kinda intended.
The idea is that the name of the created folder is the name of the workcell, which is also the name of the robot in the exported URDF. The same name can also be used by other libraries that build on RMF site editor to (for example) create ROS 2 services or topics for the specific workcell.
Maybe a better solution could be to change the dialog to pick a folder?
Maybe a better solution could be to change the dialog to pick a folder?
Yeah that would be fine and would be my recommendation (2).
But if we take that approach then we need to make sure there's a way for users to rename the workcell. I couldn't find a way to do that when I was trying out the workcell editor yesterday.
Description of the bug
When exporting a workcell URDF, there is a file dialogue that lets you fill in a filename. Even if you provide a filename, the site editor will export a directory based on the original name of the workcell.
A better use experience would either:
AsyncFileDialog::new().pick_folder()
instead ofAsyncFileDialog::new().save_file()
Steps to reproduce the bug
Load a workcell and then export it as URDF
The text was updated successfully, but these errors were encountered: