Skip to content

Commit

Permalink
more notes in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Apr 1, 2024
1 parent ceaacd3 commit fcbcb24
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,22 @@ cd sim

### Notes

1. After cloning Isaac Gym, sometimes the bindings mysteriously disappear. To fix this, update the submodule:
- After cloning Isaac Gym, sometimes the bindings mysteriously disappear. To fix this, update the submodule:

```bash
git submodule update --init --recursive
```

- After generating the URDF, for some reason, Isaac Gym has a weird issue with the knee joints. To fix this, you should change the axis of the knee joints from:

```xml
<axis xyz="0 0 1" />
```

to

```xml
<axis xyz="0 0 -1" />
```

For some reason this doesn't seem to happen for any other joints like the ankle, and also doesn't happen in other simulators like PyBullet.

0 comments on commit fcbcb24

Please sign in to comment.