Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
Fix to add additional resolution of Oculus Controllers following the …
Browse files Browse the repository at this point in the history
…V1 firmware Oculus update (controllers renamed for Quest) (#578)
  • Loading branch information
SimonDarksideJ authored May 11, 2020
1 parent 0f363fd commit fc9bda6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ protected override GenericJoystickController GetOrAddController(string joystickN
protected override Type GetCurrentControllerType(string joystickName)
{
if (joystickName.Contains("Oculus Rift CV1") ||
joystickName.Contains("Oculus Touch"))
joystickName.Contains("Oculus Touch") ||
joystickName.Contains("Oculus Quest"))
{
return typeof(OculusTouchOpenVRController);
}
Expand Down

0 comments on commit fc9bda6

Please sign in to comment.