您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
93 行
2.6 KiB
93 行
2.6 KiB
Shader "Hidden/Light2D-Shape-Volumetric"
|
|
{
|
|
SubShader
|
|
{
|
|
Tags { "RenderType" = "Transparent" "RenderPipeline" = "UniversalPipeline" }
|
|
|
|
Pass
|
|
{
|
|
Blend SrcAlpha One
|
|
ZWrite Off
|
|
ZTest Off
|
|
Cull Off
|
|
|
|
HLSLPROGRAM
|
|
#pragma prefer_hlslcc gles
|
|
#pragma vertex vert
|
|
#pragma fragment frag
|
|
#pragma multi_compile_local SPRITE_LIGHT __
|
|
|
|
#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
|
|
|
|
struct Attributes
|
|
{
|
|
float3 positionOS : POSITION;
|
|
float4 color : COLOR;
|
|
float4 volumeColor : TANGENT;
|
|
|
|
#ifdef SPRITE_LIGHT
|
|
half2 uv : TEXCOORD0;
|
|
#endif
|
|
};
|
|
|
|
struct Varyings
|
|
{
|
|
float4 positionCS : SV_POSITION;
|
|
float4 color : COLOR;
|
|
float2 uv : TEXCOORD0;
|
|
};
|
|
|
|
float4 _LightColor;
|
|
float _FalloffDistance;
|
|
float4 _FalloffOffset;
|
|
float _VolumeOpacity;
|
|
float _InverseHDREmulationScale;
|
|
|
|
#ifdef SPRITE_LIGHT
|
|
TEXTURE2D(_CookieTex); // This can either be a sprite texture uv or a falloff texture
|
|
SAMPLER(sampler_CookieTex);
|
|
#else
|
|
uniform float _FalloffIntensity;
|
|
TEXTURE2D(_FalloffLookup);
|
|
SAMPLER(sampler_FalloffLookup);
|
|
#endif
|
|
|
|
Varyings vert(Attributes attributes)
|
|
{
|
|
Varyings o = (Varyings)0;
|
|
|
|
float3 positionOS = attributes.positionOS;
|
|
positionOS.x = positionOS.x + _FalloffDistance * attributes.color.r + (1 - attributes.color.a) * _FalloffOffset.x;
|
|
positionOS.y = positionOS.y + _FalloffDistance * attributes.color.g + (1 - attributes.color.a) * _FalloffOffset.y;
|
|
|
|
|
|
o.positionCS = TransformObjectToHClip(positionOS);
|
|
o.color = _LightColor * _InverseHDREmulationScale;
|
|
o.color.a = _VolumeOpacity;
|
|
|
|
#ifdef SPRITE_LIGHT
|
|
o.uv = attributes.uv;
|
|
#else
|
|
o.uv = float2(attributes.color.a, _FalloffIntensity);
|
|
#endif
|
|
|
|
return o;
|
|
}
|
|
|
|
half4 frag(Varyings i) : SV_Target
|
|
{
|
|
half4 color = i.color;
|
|
|
|
#if SPRITE_LIGHT
|
|
color *= SAMPLE_TEXTURE2D(_CookieTex, sampler_CookieTex, i.uv);
|
|
#else
|
|
color.a = i.color.a * SAMPLE_TEXTURE2D(_FalloffLookup, sampler_FalloffLookup, i.uv).r;
|
|
#endif
|
|
|
|
return color;
|
|
|
|
}
|
|
ENDHLSL
|
|
}
|
|
}
|
|
}
|