setWireframe.lua 437 B

12345678910111213141516
  1. return {
  2. tag = 'graphicsState',
  3. summary = 'Enable or disable wireframe rendering.',
  4. description = [[
  5. Enables or disables wireframe rendering. This is meant to be used as a debugging tool.
  6. ]],
  7. arguments = {
  8. {
  9. name = 'wireframe',
  10. type = 'boolean',
  11. description = 'Whether or not wireframe rendering should be enabled.'
  12. }
  13. },
  14. returns = {},
  15. notes = 'Wireframe rendering is initially disabled.'
  16. }