HeadsetOrigin.lua 601 B

12345678910111213141516171819
  1. return {
  2. summary = 'Different types of coordinate space origins.',
  3. description = [[
  4. Represents the different types of origins for coordinate spaces. An origin of "floor" means
  5. that the origin is on the floor in the middle of a room-scale play area. An origin of "head"
  6. means that no positional tracking is available, and consequently the origin is always at the
  7. position of the headset.
  8. ]],
  9. values = {
  10. {
  11. name = 'head',
  12. description = 'The origin is at the head.'
  13. },
  14. {
  15. name = 'floor',
  16. description = 'The origin is on the floor.'
  17. }
  18. }
  19. }