diff --git a/habitat-lab/habitat/articulated_agent_controllers/humanoid_seq_pose_controller.py b/habitat-lab/habitat/articulated_agent_controllers/humanoid_seq_pose_controller.py index 18834096b5..3cf71482e4 100644 --- a/habitat-lab/habitat/articulated_agent_controllers/humanoid_seq_pose_controller.py +++ b/habitat-lab/habitat/articulated_agent_controllers/humanoid_seq_pose_controller.py @@ -13,7 +13,9 @@ HumanoidBaseController, Motion, ) - +from habitat.articulated_agent_controllers.humanoid_base_controller import ( + BASE_HUMANOID_OFFSET +) class HumanoidSeqPoseController(HumanoidBaseController): """ @@ -28,7 +30,7 @@ def __init__( self, motion_pose_path, motion_fps=30, - base_offset=(0, 0.9, 0), + base_offset=BASE_HUMANOID_OFFSET, ): super().__init__(motion_fps, base_offset)