| 12345678910111213141516171819202122 |
- return {
- summary = 'Get the dimensions of the BoxShape.',
- description = 'Returns the width, height, and depth of the BoxShape.',
- arguments = {},
- returns = {
- {
- 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.'
- }
- }
- }
|