setDimensions.lua 508 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Set the dimensions of the BoxShape.',
  3. description = 'Sets the width, height, and depth of the BoxShape.',
  4. arguments = {
  5. {
  6. name = 'width',
  7. type = 'number',
  8. description = 'The width of the box, in meters.'
  9. },
  10. {
  11. name = 'height',
  12. type = 'number',
  13. description = 'The height of the box, in meters.'
  14. },
  15. {
  16. name = 'depth',
  17. type = 'number',
  18. description = 'The depth of the box, in meters.'
  19. }
  20. },
  21. returns = {}
  22. }