Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ Guidelines for modifications:
* Xinpeng Liu
* Yang Jin
* Yanzi Zhu
* Yasunori Toshimitsu
* Yijie Guo
* Yohan Choi
* Yujian Zhang
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def reset(self, env_ids: Sequence[int] | None = None) -> None:
env_ids = env_ids[:, None]
super().reset(env_ids)
# reset history to current joint positions
self._prev_applied_actions[env_ids, :] = self._asset.data.joint_pos[env_ids, self._joint_ids]
self._prev_applied_actions[env_ids, :] = self._asset.data.joint_pos[env_ids][:, :, self._joint_ids]

def process_actions(self, actions: torch.Tensor):
# apply affine transformations
Expand Down