您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
574 B
37 行
574 B
Shader "EasyHDRP/ZWriteOnly"
|
|
{
|
|
Properties
|
|
{
|
|
}
|
|
|
|
HLSLINCLUDE
|
|
|
|
#pragma target 4.5
|
|
|
|
|
|
#include "Assets/Shaders/EasyHDRP/EasyHDRP.hlsl"
|
|
|
|
float4 frag(v2f i) : SV_Target
|
|
{
|
|
return 0.0f;
|
|
}
|
|
|
|
ENDHLSL
|
|
|
|
SubShader
|
|
{
|
|
Tags { "Queue" = "Transparent" }
|
|
|
|
Pass
|
|
{
|
|
Name ""
|
|
Tags{ "LightMode" = "ForwardOnly" }
|
|
Blend One One
|
|
ZWrite On
|
|
HLSLPROGRAM
|
|
#pragma vertex vert
|
|
#pragma fragment frag
|
|
ENDHLSL
|
|
}
|
|
}
|
|
}
|