getWorld.lua 361 B

123456789101112131415161718
  1. return {
  2. summary = 'Get the World the Collider is in.',
  3. description = 'Returns the World the Collider is in.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'world',
  8. type = 'World',
  9. description = 'The World the Collider is in.'
  10. }
  11. },
  12. notes = [[
  13. Colliders can only be in one World at a time.
  14. ]],
  15. related = {
  16. 'World'
  17. }
  18. }