isPlaying.lua 348 B

1234567891011121314151617
  1. return {
  2. summary = 'Check if the Source is playing.',
  3. description = 'Returns whether or not the Source is playing.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'playing',
  8. type = 'boolean',
  9. description = 'Whether the Source is playing.'
  10. }
  11. },
  12. related = {
  13. 'Source:play',
  14. 'Source:pause',
  15. 'Source:stop'
  16. }
  17. }