暫無描述
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.

BlendOp.cs 164B

123456789101112
  1. namespace UnityEditor.ShaderGraph
  2. {
  3. [GenerationAPI]
  4. internal enum BlendOp
  5. {
  6. Add,
  7. Sub,
  8. RevSub,
  9. Min,
  10. Max,
  11. }
  12. }