| 12345678910111213141516171819202122232425262728293031 |
- return {
- summary = 'Types of physics shapes.',
- description = [[
- Represents the different types of physics Shapes available.
- ]],
- values = {
- {
- name = 'box',
- description = 'A BoxShape.'
- },
- {
- name = 'capsule',
- description = 'A CapsuleShape.'
- },
- {
- name = 'cylinder',
- description = 'A CylinderShape.'
- },
- {
- name = 'sphere',
- description = 'A SphereShape.'
- }
- },
- related = {
- 'Shape',
- 'BoxShape',
- 'CapsuleShape',
- 'CylinderShape',
- 'SphereShape'
- }
- }
|