Winding.lua 443 B

123456789101112131415161718192021
  1. return {
  2. summary = 'Different triangle windings.',
  3. description = [[
  4. Indicates whether the front face of a triangle uses the clockwise or counterclockwise vertex
  5. order.
  6. ]],
  7. values = {
  8. {
  9. name = 'clockwise',
  10. description = 'Clockwise winding.'
  11. },
  12. {
  13. name = 'counterclockwise',
  14. description = 'Counterclockwise winding.'
  15. }
  16. },
  17. related = {
  18. 'Pass:setWinding',
  19. 'Pass:setCullMode'
  20. }
  21. }