Commit 9c126be2 authored by rwiltz's avatar rwiltz Committed by Kelly Guo

Reverts "Skips head pose querying due to pinocchio version issue" (#353)

Reverts isaac-sim/IsaacLab-Internal#344
parent db85fabb
...@@ -225,10 +225,6 @@ class OpenXRDevice(DeviceBase): ...@@ -225,10 +225,6 @@ class OpenXRDevice(DeviceBase):
Returns: Returns:
numpy.ndarray: 7-element array containing head position (xyz) and orientation (wxyz) numpy.ndarray: 7-element array containing head position (xyz) and orientation (wxyz)
""" """
"""
# TODO: This is a temporary fix since get_virtual_world_pose crashes if pinocchio 2.7 is used
head_device = XRCore.get_singleton().get_input_device("displayDevice") head_device = XRCore.get_singleton().get_input_device("displayDevice")
if head_device: if head_device:
hmd = head_device.get_virtual_world_pose("") hmd = head_device.get_virtual_world_pose("")
...@@ -247,7 +243,6 @@ class OpenXRDevice(DeviceBase): ...@@ -247,7 +243,6 @@ class OpenXRDevice(DeviceBase):
quati[1], quati[1],
quati[2], quati[2],
]) ])
"""
return self._previous_headpose return self._previous_headpose
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment