getRadius.lua 341 B

1234567891011121314151617
  1. return {
  2. summary = 'Get the radius of the SphereShape.',
  3. description = 'Returns the radius of the SphereShape.',
  4. arguments = {},
  5. returns = {
  6. radius = {
  7. type = 'number',
  8. description = 'The radius of the sphere, in meters.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'radius' }
  15. }
  16. }
  17. }