Squashed 'lib/vscode/' content from commit e5a624b788
git-subtree-dir: lib/vscode git-subtree-split: e5a624b788d92b8d34d1392e4c4d9789406efe8f
This commit is contained in:
15
extensions/shaderlab/test/colorize-fixtures/test.shader
Normal file
15
extensions/shaderlab/test/colorize-fixtures/test.shader
Normal file
@@ -0,0 +1,15 @@
|
||||
Shader "Example/Diffuse Simple" {
|
||||
SubShader {
|
||||
Tags { "RenderType" = "Opaque" }
|
||||
CGPROGRAM
|
||||
#pragma surface surf Lambert
|
||||
struct Input {
|
||||
float4 color : COLOR;
|
||||
};
|
||||
void surf (Input IN, inout SurfaceOutput o) {
|
||||
o.Albedo = 1;
|
||||
}
|
||||
ENDCG
|
||||
}
|
||||
Fallback "Diffuse"
|
||||
}
|
||||
Reference in New Issue
Block a user