blob: ed6f487a35d876d3ccdfa70cc3354f8cc83905f4 (
plain)
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
|
using System.Collections.Generic;
namespace UniGLTF.ShaderPropExporter
{
public static partial class PreShaderPropExporter
{
[PreExportShader]
static KeyValuePair<string, ShaderProps> Unlit_Texture
{
get
{
return new KeyValuePair<string, ShaderProps>(
"Unlit/Texture",
new ShaderProps
{
Properties = new ShaderProperty[]{
new ShaderProperty("_MainTex", ShaderPropertyType.TexEnv)
}
}
);
}
}
}
}
|