| 1234567891011121314151617181920212223242526 |
- return {
- tag = 'playArea',
- summary = 'Get a list of points that make up the play area boundary.',
- description = [[
- Returns a list of points representing the boundaries of the play area, or `nil` if the current
- headset driver does not expose this information.
- ]],
- arguments = {
- {
- name = 't',
- type = 'table',
- default = 'nil',
- description = 'A table to fill with the points. If `nil`, a new table will be created.'
- }
- },
- returns = {
- {
- name = 'points',
- type = 'table',
- description = 'A flat table of 3D points representing the play area boundaries.'
- }
- },
- related = {
- 'lovr.headset.getBoundsDimensions'
- }
- }
|