UvChannel.cs 168 B

123456789101112
  1. using System;
  2. namespace UnityEditor.ShaderGraph.Internal
  3. {
  4. public enum UVChannel
  5. {
  6. UV0 = 0,
  7. UV1 = 1,
  8. UV2 = 2,
  9. UV3 = 3,
  10. }
  11. }