您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
605 B
21 行
605 B
using System;
|
|
using UnityEditor.ShaderGraph.Internal;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
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 const string FaceSign = "FaceSign";
|
|
public const string TimeParameters = "TimeParameters";
|
|
|
|
public static string GetUVName(this UVChannel channel)
|
|
{
|
|
return UV[(int)channel];
|
|
}
|
|
}
|
|
}
|