setLength.lua 354 B

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