您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
71 行
1.5 KiB
71 行
1.5 KiB
Shader "Unlit/Normal"
|
|
{
|
|
SubShader
|
|
{
|
|
Tags
|
|
{
|
|
"Queue" = "Geometry"
|
|
"RenderType" = "Opaque"
|
|
"ForceNoShadowCasting" = "True"
|
|
}
|
|
|
|
Pass
|
|
{
|
|
ZTest LEqual
|
|
ZWrite On
|
|
Lighting Off
|
|
LOD 100
|
|
Tags
|
|
{
|
|
"LightMode" = "Always"
|
|
}
|
|
|
|
|
|
HLSLPROGRAM
|
|
|
|
#pragma vertex vert
|
|
#pragma fragment frag
|
|
|
|
|
|
#include "UnityCG.cginc"
|
|
|
|
struct appdata
|
|
{
|
|
float3 position : POSITION;
|
|
float3 normal : NORMAL;
|
|
};
|
|
|
|
struct v2f
|
|
{
|
|
float4 position : SV_POSITION;
|
|
half3 worldNormal : TEXCOORD0;
|
|
};
|
|
|
|
struct fragment_output
|
|
{
|
|
half4 color : SV_Target;
|
|
};
|
|
|
|
|
|
v2f vert (appdata v)
|
|
{
|
|
v2f o;
|
|
o.position = UnityObjectToClipPos(v.position);
|
|
o.worldNormal = UnityObjectToWorldNormal(v.normal);
|
|
return o;
|
|
}
|
|
|
|
|
|
fragment_output frag (v2f i)
|
|
{
|
|
fragment_output o;
|
|
o.color.xyz = i.worldNormal * 0.5f + 0.5f;
|
|
o.color.w = 1.0h;
|
|
return o;
|
|
}
|
|
|
|
ENDHLSL
|
|
}
|
|
}
|
|
Fallback Off
|
|
}
|