getDrawMode.lua 316 B

1234567891011121314
  1. return {
  2. summary = 'Get the draw mode of the Mesh.',
  3. description = [[
  4. Get the draw mode of the Mesh, which controls how the vertices are connected together.
  5. ]],
  6. arguments = {},
  7. returns = {
  8. {
  9. name = 'mode',
  10. type = 'DrawMode',
  11. description = 'The draw mode of the Mesh.'
  12. }
  13. }
  14. }