setRadius.lua 338 B

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