play.lua 468 B

12345678910111213141516
  1. return {
  2. summary = 'Play the Source.',
  3. description = 'Plays the Source. This doesn\'t do anything if the Source is already playing.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'success',
  8. type = 'boolean',
  9. description = 'Whether the Source successfully started playing.'
  10. }
  11. },
  12. notes = [[
  13. There is a maximum of 64 Sources that can be playing at once. If 64 Sources are already
  14. playing, this function will return `false`.
  15. ]]
  16. }