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
arg4 (:obj:`str`): optional: path to stage to use for importing. leaving it empty will import on open stage. If the open stage is a new stage, textures will not load.
Returns:
:obj:`str`: Path to the robot on the USD stage.
, where the docstring also seems to be outdated.
The text was updated successfully, but these errors were encountered:
I could not get the command
URDFParseAndImportFile
working. I tried withresult, prim_path = omni.kit.commands.execute( "URDFParseAndImportFile", urdf_path=urdf_path, dest_path=dest_path, import_config=import_config, )
After this line, the
result
becameTrue
andprim_path
became/my_robot_name
. However, the robot has NOT been added to the stage in the omniverse app.After checking the source code, I found something quite strange.
In
urdf-importer-extension/source/extensions/omni.importer.urdf/python/scripts/commands.py
Lines 136 to 152 in b161d55
import_robot
is "path to USD file" but 5th argument should bestage
according tourdf-importer-extension/source/extensions/omni.importer.urdf/bindings/BindingsUrdfPython.cpp
Lines 411 to 429 in b161d55
The text was updated successfully, but these errors were encountered: