DrawStyle.lua 408 B

12345678910111213141516
  1. return {
  2. summary = 'Different ways graphics primitives can be drawn.',
  3. description = [[
  4. Most graphics primitives can be drawn in one of two modes: a filled mode and a wireframe mode.
  5. ]],
  6. values = {
  7. {
  8. name = 'fill',
  9. description = 'The shape is drawn as a filled object.'
  10. },
  11. {
  12. name = 'line',
  13. description = 'The shape is drawn as a wireframe object.'
  14. }
  15. }
  16. }