ShapeType.lua 555 B

12345678910111213141516171819202122232425262728293031
  1. return {
  2. summary = 'Types of physics shapes.',
  3. description = [[
  4. Represents the different types of physics Shapes available.
  5. ]],
  6. values = {
  7. {
  8. name = 'box',
  9. description = 'A BoxShape.'
  10. },
  11. {
  12. name = 'capsule',
  13. description = 'A CapsuleShape.'
  14. },
  15. {
  16. name = 'cylinder',
  17. description = 'A CylinderShape.'
  18. },
  19. {
  20. name = 'sphere',
  21. description = 'A SphereShape.'
  22. }
  23. },
  24. related = {
  25. 'Shape',
  26. 'BoxShape',
  27. 'CapsuleShape',
  28. 'CylinderShape',
  29. 'SphereShape'
  30. }
  31. }