| 1234567891011121314151617181920 |
- return {
- summary = 'Get the sample rate of the Sound.',
- description = [[
- Returns the sample rate of the Sound, in Hz. This is the number of frames that are played every
- second. It's usually a high number like 48000.
- ]],
- arguments = {},
- returns = {
- frequency = {
- type = 'number',
- description = 'The number of frames per second in the Sound.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'frequency' }
- }
- }
- }
|