Usually in Pybullet we can do:
robot = p.loadURDF(os.path.join(urdfRootPath, "robot.urdf"),useFixedBase=True)
to load a URDF. Is it possible to load a urdf.xacro file directly?
Usually in Pybullet we can do:
robot = p.loadURDF(os.path.join(urdfRootPath, "robot.urdf"),useFixedBase=True)
to load a URDF. Is it possible to load a urdf.xacro file directly?
I think you can load .xacro
files directly using loadURDF
function. Just like a bunch of examples showed here.