| 1234567891011121314151617181920212223 |
- return {
- tag = 'listener',
- summary = 'Set the position of the listener.',
- description = 'Sets the position of the virtual audio listener, in meters.',
- arguments = {
- {
- name = 'x',
- type = 'number',
- description = 'The x position of the listener.'
- },
- {
- name = 'y',
- type = 'number',
- description = 'The y position of the listener.'
- },
- {
- name = 'z',
- type = 'number',
- description = 'The z position of the listener.'
- }
- },
- returns = {}
- }
|