| 12345678910111213141516171819 |
- return {
- summary = 'Set the playback position of the Source.',
- description = 'Seeks the Source to the specified position.',
- arguments = {
- {
- name = 'position',
- type = 'number',
- description = 'The position to seek to.'
- },
- {
- name = 'unit',
- type = 'TimeUnit',
- default = [['seconds']],
- description = 'The units for the seek position.'
- }
- },
- returns = {},
- notes = 'Seeking a Source backed by a stream `Sound` has no meaningful effect.'
- }
|