Skip to content

Commit 4a3f07a

Browse files
Fixes action term in the reach environment (#710)
# Description Fixes action term in the IK reach environment configurations. ## 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 - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
1 parent 26b24f4 commit 4a3f07a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/extensions/omni.isaac.lab_tasks/omni/isaac/lab_tasks/manager_based/manipulation/reach/config/franka/ik_abs_env_cfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __post_init__(self):
2626
self.scene.robot = FRANKA_PANDA_HIGH_PD_CFG.replace(prim_path="{ENV_REGEX_NS}/Robot")
2727

2828
# Set actions for the specific robot type (franka)
29-
self.actions.body_joint_pos = DifferentialInverseKinematicsActionCfg(
29+
self.actions.arm_action = DifferentialInverseKinematicsActionCfg(
3030
asset_name="robot",
3131
joint_names=["panda_joint.*"],
3232
body_name="panda_hand",

source/extensions/omni.isaac.lab_tasks/omni/isaac/lab_tasks/manager_based/manipulation/reach/config/franka/ik_rel_env_cfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __post_init__(self):
2626
self.scene.robot = FRANKA_PANDA_HIGH_PD_CFG.replace(prim_path="{ENV_REGEX_NS}/Robot")
2727

2828
# Set actions for the specific robot type (franka)
29-
self.actions.body_joint_pos = DifferentialInverseKinematicsActionCfg(
29+
self.actions.arm_action = DifferentialInverseKinematicsActionCfg(
3030
asset_name="robot",
3131
joint_names=["panda_joint.*"],
3232
body_name="panda_hand",

0 commit comments

Comments
 (0)