| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- return {
- tag = 'headset',
- summary = 'Get the field of view angles of a view.',
- description = [[
- Returns the view angles of one of the headset views.
- These can be used with `Mat4:fov` to create a projection matrix.
- If tracking data is unavailable for the view or the index is invalid, `nil` is returned.
- ]],
- arguments = {
- {
- name = 'view',
- type = 'number',
- description = 'The view index.'
- }
- },
- returns = {
- {
- name = 'left',
- type = 'number',
- description = 'The left view angle, in radians.'
- },
- {
- name = 'right',
- type = 'number',
- description = 'The right view angle, in radians.'
- },
- {
- name = 'top',
- type = 'number',
- description = 'The top view angle, in radians.'
- },
- {
- name = 'bottom',
- type = 'number',
- description = 'The bottom view angle, in radians.'
- }
- },
- related = {
- 'lovr.headset.getViewCount',
- 'lovr.headset.getViewPose'
- }
- }
|