| 12345678910111213141516171819202122 |
- return {
- summary = 'Set the dimensions of the BoxShape.',
- description = 'Sets the width, height, and depth of the BoxShape.',
- arguments = {
- {
- name = 'width',
- type = 'number',
- description = 'The width of the box, in meters.'
- },
- {
- name = 'height',
- type = 'number',
- description = 'The height of the box, in meters.'
- },
- {
- name = 'depth',
- type = 'number',
- description = 'The depth of the box, in meters.'
- }
- },
- returns = {}
- }
|