Skip to content

Commit 8f014bf

Browse files
pascal-rothmohanksriram
authored andcommitted
Fixes the double origin assignment in the quadrupeds example (isaac-sim#625)
# Description In the quadruped example, two robots are assigned the same origin. This PR fixes that. ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
1 parent f004cb0 commit 8f014bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/standalone/demos/quadrupeds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def design_scene() -> tuple[dict, list[list[float]]]:
107107
unitree_go2 = Articulation(UNITREE_GO2_CFG.replace(prim_path="/World/Origin6/Robot"))
108108

109109
# Origin 7 with Boston Dynamics Spot
110-
prim_utils.create_prim("/World/Origin7", "Xform", translation=origins[5])
110+
prim_utils.create_prim("/World/Origin7", "Xform", translation=origins[6])
111111
# -- Robot
112112
spot = Articulation(SPOT_CFG.replace(prim_path="/World/Origin7/Robot"))
113113

0 commit comments

Comments
 (0)