ShaderGeneratorNames.cs 605 B

123456789101112131415161718192021
  1. using System;
  2. using UnityEditor.ShaderGraph.Internal;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. static class ShaderGeneratorNames
  6. {
  7. private static string[] UV = {"uv0", "uv1", "uv2", "uv3"};
  8. public static int UVCount = 4;
  9. public const string ScreenPosition = "ScreenPosition";
  10. public const string VertexColor = "VertexColor";
  11. public const string FaceSign = "FaceSign";
  12. public const string TimeParameters = "TimeParameters";
  13. public static string GetUVName(this UVChannel channel)
  14. {
  15. return UV[(int)channel];
  16. }
  17. }
  18. }