0

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?

Rexcirus
  • 2,459
  • 3
  • 22
  • 42

1 Answers1

0

I think you can load .xacro files directly using loadURDF function. Just like a bunch of examples showed here.

FloppyHank
  • 56
  • 4