getWorld.lua 429 B

1234567891011121314151617181920212223
  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. world = {
  7. type = 'World',
  8. description = 'The World the Collider is in.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'world' }
  15. }
  16. },
  17. notes = [[
  18. Colliders can only be in one World at a time.
  19. ]],
  20. related = {
  21. 'World'
  22. }
  23. }