HeadsetDriver.lua 510 B

12345678910111213141516171819
  1. return {
  2. summary = 'VR APIs.',
  3. description = [[
  4. These are all of the supported VR APIs that LÖVR can use to power the lovr.headset module. You
  5. can change the order of headset drivers using `lovr.conf` to prefer or exclude specific VR APIs.
  6. At startup, LÖVR searches through the list of drivers in order.
  7. ]],
  8. values = {
  9. {
  10. name = 'desktop',
  11. description = 'A VR simulator using keyboard/mouse.'
  12. },
  13. {
  14. name = 'openxr',
  15. description = 'OpenXR.'
  16. }
  17. }
  18. }