File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file.
88
99- Description: Kinova Gen3
1010
11+ ### Changed
12+
13+ - MuJoCo examples: try `` mj_description `` suffix rather than `` description ``
14+
1115## [ 0.6.0] - 2022/09/28
1216
1317### Added
Original file line number Diff line number Diff line change 3333 try :
3434 model = load_robot_description (args .name )
3535 except ModuleNotFoundError :
36- model = load_robot_description (f"{ args .name } _description " )
36+ model = load_robot_description (f"{ args .name } _mj_description " )
3737
3838 print (f"Robot successfully loaded with model={ model } " )
Original file line number Diff line number Diff line change 4343 try :
4444 model = load_robot_description (args .name )
4545 except ModuleNotFoundError :
46- model = load_robot_description (f"{ args .name } _description " )
46+ model = load_robot_description (f"{ args .name } _mj_description " )
4747
4848 data = mujoco .MjData (model )
4949 viewer = mujoco_viewer .MujocoViewer (model , data )
You can’t perform that action at this time.
0 commit comments