23 lines
328 B
Text
23 lines
328 B
Text
|
Shader "Hidden/HDRP/Blit" {
|
||
|
Properties {
|
||
|
}
|
||
|
//DummyShaderTextExporter
|
||
|
SubShader{
|
||
|
Tags { "RenderType" = "Opaque" }
|
||
|
LOD 200
|
||
|
CGPROGRAM
|
||
|
#pragma surface surf Standard
|
||
|
#pragma target 3.0
|
||
|
|
||
|
struct Input
|
||
|
{
|
||
|
float2 uv_MainTex;
|
||
|
};
|
||
|
|
||
|
void surf(Input IN, inout SurfaceOutputStandard o)
|
||
|
{
|
||
|
o.Albedo = 1;
|
||
|
}
|
||
|
ENDCG
|
||
|
}
|
||
|
}
|