Skip to content

Commit

Permalink
Pin drake_models to an older commit
Browse files Browse the repository at this point in the history
From 9b274a2570ddefc4140e4b98bcf248003289b870 onward, obj mesh files
converted to glTF in drake_models don't work with PyBullet, resulting in
the following errors:

    /home/runner/.cache/robot_descriptions/drake_models/iiwa_description/urdf/iiwa14_primitive_collision.urdf:60: invalid mesh filename extension 'gltf'
    b3Error[examples/Importers/ImportURDFDemo/BulletUrdfImporter.cpp,121]:
    Could not parse visual element for Link:b3Error[examples/Importers/ImportURDFDemo/BulletUrdfImporter.cpp,121]:
    iiwa_link_0b3Error[examples/Importers/ImportURDFDemo/BulletUrdfImporter.cpp,121]:
  • Loading branch information
stephane-caron committed Apr 25, 2024
1 parent 2969064 commit 54374d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ class Repository:
),
"drake_models": Repository(
url="https://github.com/RobotLocomotion/models.git",
commit="c81f2458cf6d19a20a27e1495e7f07202536e845",
# From 9b274a2570ddefc4140e4b98bcf248003289b870 onward, obj mesh files
# converted to glTF in drake_models don't work with PyBullet ("invalid
# mesh filename extension 'gltf'")
commit="d0fe1a427a6bd39040ff3a77aaf6ddcc4d62a8fe",
cache_path="drake_models",
),
"eDO_description": Repository(
Expand Down

0 comments on commit 54374d4

Please sign in to comment.