DrawStyle.lua 417 B

1234567891011121314151617181920
  1. return {
  2. summary = 'Different styles to draw shapes.',
  3. description = 'Whether a shape should be drawn filled or outlined.',
  4. values = {
  5. {
  6. name = 'fill',
  7. description = 'The shape will be filled in (the default).'
  8. },
  9. {
  10. name = 'line',
  11. description = 'The shape will be outlined.'
  12. }
  13. },
  14. related = {
  15. 'Pass:plane',
  16. 'Pass:cube',
  17. 'Pass:box',
  18. 'Pass:circle'
  19. }
  20. }