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

GenerationMode.cs 281B

12345678910111213
  1. namespace UnityEditor.ShaderGraph
  2. {
  3. enum GenerationMode
  4. {
  5. Preview,
  6. ForReals,
  7. VFX
  8. }
  9. static class GenerationModeExtensions
  10. {
  11. public static bool IsPreview(this GenerationMode mode) { return mode == GenerationMode.Preview; }
  12. }
  13. }