-
Notifications
You must be signed in to change notification settings - Fork 666
Expand file tree
/
Copy pathShaderConfig.cs
More file actions
103 lines (91 loc) · 3.21 KB
/
ShaderConfig.cs
File metadata and controls
103 lines (91 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using UnityEngine;
namespace FairyGUI
{
/// <summary>
///
/// </summary>
public static class ShaderConfig
{
/// <summary>
///
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public delegate Shader GetFunction(string name);
/// <summary>
///
/// </summary>
public static GetFunction Get = Shader.Find;
/// <summary>
///
/// </summary>
#if UNITY_2019_1_OR_NEWER
public static string imageShader = "FairyGUI/Image-URP";
#else
public static string imageShader = "FairyGUI/Image";
#endif
/// <summary>
///
/// </summary>
#if UNITY_2019_1_OR_NEWER
public static string textShader = "FairyGUI/Text-URP";
#else
public static string textShader = "FairyGUI/Text";
#endif
/// <summary>
///
/// </summary>
public static string bmFontShader = "FairyGUI/BMFont";
/// <summary>
///
/// </summary>
public static string TMPFontShader = "FairyGUI/TMP";
public static int ID_ClipBox;
public static int ID_ClipSoftness;
public static int ID_AlphaTex;
public static int ID_StencilComp;
public static int ID_Stencil;
public static int ID_StencilOp;
public static int ID_StencilReadMask;
public static int ID_ColorMask;
public static int ID_ColorMatrix;
public static int ID_ColorOffset;
public static int ID_BlendSrcFactor;
public static int ID_BlendDstFactor;
public static int ID_ColorOption;
public static int ID_Stencil2;
static ShaderConfig()
{
ID_ClipBox = Shader.PropertyToID("_ClipBox");
ID_ClipSoftness = Shader.PropertyToID("_ClipSoftness");
ID_AlphaTex = Shader.PropertyToID("_AlphaTex");
ID_StencilComp = Shader.PropertyToID("_StencilComp");
ID_Stencil = Shader.PropertyToID("_Stencil");
ID_StencilOp = Shader.PropertyToID("_StencilOp");
ID_StencilReadMask = Shader.PropertyToID("_StencilReadMask");
ID_ColorMask = Shader.PropertyToID("_ColorMask");
ID_ColorMatrix = Shader.PropertyToID("_ColorMatrix");
ID_ColorOffset = Shader.PropertyToID("_ColorOffset");
ID_BlendSrcFactor = Shader.PropertyToID("_BlendSrcFactor");
ID_BlendDstFactor = Shader.PropertyToID("_BlendDstFactor");
ID_ColorOption = Shader.PropertyToID("_ColorOption");
ID_Stencil2 = Shader.PropertyToID("_StencilRef");
}
/// <summary>
///
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public static Shader GetShader(string name)
{
Shader shader = Get(name);
if (shader == null)
{
Debug.LogWarning("FairyGUI: shader not found: " + name);
shader = Shader.Find("UI/Default");
}
shader.hideFlags = DisplayObject.hideFlags;
return shader;
}
}
}