-
I'm encountering an error with having multiple articulations in the prim path when adding my custom MJCF robot model to IsaacSim. I'm probably missing something straightforward, and I'd greatly appreciate any guidance. I've prepared a minimal reproducible example using a sample MJCF gripper model available on my branch here: https://github.com/Yasu31/IsaacLab/tree/simple-mjcf-gripper. After converting my sample MJCF gripper model to USD with: python scripts/tools/convert_mjcf.py simple_gripper.xml simple_gripper.usd --fix-base --import-sites --make-instanceable I saved it to However, when I run
I found out that if in the Isaac Sim window, I do:
it can be loaded, but then it's not an instanceable asset anymore and the same error as #2113 happens where only the first robot in all of the environments is articulated, so this is not a solution: Could you please advise me on what I'm missing? Removing the top level body from the MJCF didn't work. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
update: by a suggestion from my colleague @riccardofeingold , I have changed the top-level body name in MuJoCo to worldBody (as in this commit Yasu31@9c907e5 ), which gets rid of the However, the problem reported in #2113 in which only the first instance is actuated still happens... I will close this thread as my original problem was solved.
| |
Beta Was this translation helpful? Give feedback.
update: by a suggestion from my colleague @riccardofeingold , I have changed the top-level body name in MuJoCo to worldBody (as in this commit Yasu31@9c907e5 ), which gets rid of the
Failed to find a single articulation
problem, as there is no more separate worldBody in the tree.However, the problem reported in #2113 in which only the first instance is actuated still happens... I will close this thread as my original problem was solved.
|