Skip to content

Commit

Permalink
Add missing underscore to fix rendering (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankroeder committed Jan 17, 2023
1 parent 7e4e59b commit c96abb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gymnasium_robotics/envs/fetch/fetch_env.py
Expand Up @@ -238,7 +238,7 @@ def _render_callback(self):
self.sim.forward()

def _viewer_setup(self):
lookat = self.get_gripper_xpos()
lookat = self._get_gripper_xpos()
for idx, value in enumerate(lookat):
self.viewer.cam.lookat[idx] = value
assert self.viewer is not None
Expand Down

0 comments on commit c96abb9

Please sign in to comment.