您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
459 B
19 行
459 B
using System;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
public static class ShaderGeneratorNames
|
|
{
|
|
private static string[] UV = {"uv0", "uv1", "uv2", "uv3"};
|
|
public static int UVCount = 4;
|
|
|
|
public const string ScreenPosition = "ScreenPosition";
|
|
public const string VertexColor = "VertexColor";
|
|
|
|
|
|
public static string GetUVName(this UVChannel channel)
|
|
{
|
|
return UV[(int)channel];
|
|
}
|
|
}
|
|
}
|