暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZTest.cs 206B

1234567891011121314
  1. namespace UnityEditor.ShaderGraph
  2. {
  3. [GenerationAPI]
  4. internal enum ZTest
  5. {
  6. Less,
  7. Greater,
  8. LEqual,
  9. GEqual,
  10. Equal,
  11. NotEqual,
  12. Always,
  13. }
  14. }