185 lines
5.6 KiB
HLSL
185 lines
5.6 KiB
HLSL
// Stylized Water 3 by Staggart Creations (http://staggart.xyz)
|
|
// COPYRIGHT PROTECTED UNDER THE UNITY ASSET STORE EULA (https://unity.com/legal/as-terms)
|
|
// • Copying or referencing source code for the production of new asset store, or public, content is strictly prohibited!
|
|
// • Uploading this file to a public repository will subject it to an automated DMCA takedown request.
|
|
|
|
struct Attributes
|
|
{
|
|
float4 positionOS : POSITION;
|
|
float4 uv : TEXCOORD0;
|
|
float4 normalOS : NORMAL;
|
|
float4 tangentOS : TANGENT;
|
|
float4 color : COLOR0;
|
|
float2 staticLightmapUV : TEXCOORD1;
|
|
#ifdef DYNAMICLIGHTMAP_ON
|
|
float2 dynamicLightmapUV : TEXCOORD2;
|
|
#endif
|
|
|
|
#if _FLOWMAP
|
|
float2 uv2 : TEXCOORD2;
|
|
#endif
|
|
UNITY_VERTEX_INPUT_INSTANCE_ID
|
|
};
|
|
|
|
struct Varyings
|
|
{
|
|
float4 uv : TEXCOORD0;
|
|
|
|
half4 fogFactorAndVertexLight : TEXCOORD1; // x: fogFactor, yzw: vertex light
|
|
|
|
#if defined(REQUIRES_VERTEX_SHADOW_COORD_INTERPOLATOR) //No shadow cascades
|
|
float4 shadowCoord : TEXCOORD2;
|
|
#endif
|
|
|
|
//wPos.x in w-component
|
|
float4 normalWS : NORMAL;
|
|
#if REQUIRES_TANGENT_TO_WORLD
|
|
//wPos.y in w-component
|
|
float4 tangent : TANGENT;
|
|
//wPos.z in w-component
|
|
float4 bitangent : TEXCOORD3;
|
|
#else
|
|
float3 positionWS : TEXCOORD3;
|
|
#endif
|
|
|
|
float4 screenPos : TEXCOORD4;
|
|
|
|
DECLARE_LIGHTMAP_OR_SH(staticLightmapUV, vertexSH, 5);
|
|
#ifdef DYNAMICLIGHTMAP_ON
|
|
float2 dynamicLightmapUV : TEXCOORD6; // Dynamic lightmap UVs
|
|
#endif
|
|
|
|
#if _FLOWMAP
|
|
float2 uv2 : TEXCOORD7;
|
|
#endif
|
|
|
|
#ifdef USE_APV_PROBE_OCCLUSION
|
|
float4 probeOcclusion : TEXCOORD10;
|
|
#endif
|
|
|
|
float4 positionCS : SV_POSITION;
|
|
float4 color : COLOR0;
|
|
|
|
UNITY_VERTEX_INPUT_INSTANCE_ID
|
|
UNITY_VERTEX_OUTPUT_STEREO
|
|
};
|
|
|
|
Varyings LitPassVertex(Attributes input)
|
|
{
|
|
Varyings output = (Varyings)0;
|
|
|
|
UNITY_SETUP_INSTANCE_ID(input);
|
|
UNITY_TRANSFER_INSTANCE_ID(input, output);
|
|
UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
|
|
|
|
#if defined(CURVEDWORLD_IS_INSTALLED) && !defined(CURVEDWORLD_DISABLED_ON)
|
|
#if defined(CURVEDWORLD_NORMAL_TRANSFORMATION_ON)
|
|
CURVEDWORLD_TRANSFORM_VERTEX_AND_NORMAL(input.positionOS, input.normalOS.xyz, input.tangentOS)
|
|
#else
|
|
CURVEDWORLD_TRANSFORM_VERTEX(input.positionOS)
|
|
#endif
|
|
#endif
|
|
|
|
output.uv.xy = input.uv.xy;
|
|
output.uv.z = _TimeParameters.x;
|
|
output.uv.w = 0;
|
|
|
|
float3 positionWS = TransformObjectToWorld(input.positionOS.xyz);
|
|
float3 offset = 0;
|
|
|
|
VertexNormalInputs normalInput = GetVertexNormalInputs(input.normalOS.xyz, input.tangentOS);
|
|
|
|
if(_WorldSpaceUV > 0)
|
|
{
|
|
//Tangents are to be in world-space as well. Otherwise the rotation of the water plane also rotates the tangents
|
|
normalInput.tangentWS = real3(1.0, 0.0, 0.0);
|
|
normalInput.bitangentWS = real3(0.0, 0.0, 1.0);
|
|
}
|
|
|
|
float4 vertexColor = GetVertexColor(input.color.rgba, float4(_IntersectionSource > 0 ? 1 : 0, _FogSource > 1 ? 0 : 1, _VertexColorWaveFlattening, _VertexColorFoam));
|
|
|
|
#if !defined(SHADERPASS_HEIGHT) || (defined(SHADERPASS_HEIGHT) && defined(DISPLACEMENT_BUFFER_PER_VERTEX))//Displacement will be calculated per pixel
|
|
#if _WAVES
|
|
float2 uv = GetSourceUV(input.uv.xy, positionWS.xz, _WorldSpaceUV);
|
|
|
|
float3 waveOffset = float3(0,0,0);
|
|
float3 waveNormal = float3(0,1,0);
|
|
|
|
CalculateWaves(_WaveProfile, _WaveProfile_TexelSize.z, _WaveMaxLayers, uv.xy, _WaveFrequency, positionWS.xyz, _Direction.xy, normalInput.normalWS, (TIME_VERTEX * _Speed) * _WaveSpeed, vertexColor.b, float3(_WaveSteepness, _WaveHeight, _WaveSteepness),
|
|
_WaveNormalStr, _WaveFadeDistance.x, _WaveFadeDistance.y,
|
|
//Out
|
|
waveOffset, waveNormal);
|
|
|
|
#if _RIVER
|
|
//Zero out any vertical offsets and mask the values with the upward normal
|
|
waveOffset.xyz = waveOffset.yyy;
|
|
waveOffset.xyz *= normalInput.normalWS;
|
|
#endif
|
|
|
|
offset.xyz += waveOffset.xyz;
|
|
|
|
//normalInput.tangentWS = waveNormal;
|
|
#endif
|
|
|
|
//SampleWaveSimulationVertex(positionWS, positionWS.y);
|
|
|
|
#if DYNAMIC_EFFECTS_ENABLED
|
|
if(_ReceiveDynamicEffectsHeight)
|
|
{
|
|
float4 effectsData = SampleDynamicEffectsData(positionWS.xyz + offset.xyz);
|
|
|
|
half falloff = 1.0;
|
|
#if defined(TESSELLATION_ON)
|
|
//falloff = saturate(1.0 - (distance(positionWS.xyz, GetCameraPositionWS() - _TessMin)) / (_TessMax - _TessMin));
|
|
#endif
|
|
|
|
offset.y += effectsData[DE_HEIGHT_CHANNEL] * falloff;
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
//Apply vertex displacements
|
|
positionWS += offset;
|
|
|
|
output.positionCS = TransformWorldToHClip(positionWS);
|
|
half fogFactor = InitializeInputDataFog(float4(positionWS, 1.0), output.positionCS.z);
|
|
|
|
output.screenPos = ComputeScreenPos(output.positionCS);
|
|
|
|
output.normalWS = float4(normalInput.normalWS, positionWS.x);
|
|
#if REQUIRES_TANGENT_TO_WORLD
|
|
output.tangent = float4(normalInput.tangentWS, positionWS.y);
|
|
output.bitangent = float4(normalInput.bitangentWS, positionWS.z);
|
|
#else
|
|
output.positionWS = positionWS.xyz;
|
|
#endif
|
|
|
|
//Lambert shading
|
|
half3 vertexLight = 0;
|
|
#ifdef _ADDITIONAL_LIGHTS_VERTEX
|
|
vertexLight = VertexLighting(positionWS, normalInput.normalWS);
|
|
#endif
|
|
|
|
output.fogFactorAndVertexLight = half4(fogFactor, vertexLight);
|
|
output.color = vertexColor;
|
|
|
|
OUTPUT_LIGHTMAP_UV(input.staticLightmapUV, unity_LightmapST, output.staticLightmapUV);
|
|
#ifdef DYNAMICLIGHTMAP_ON
|
|
output.dynamicLightmapUV = input.dynamicLightmapUV.xy * unity_DynamicLightmapST.xy + unity_DynamicLightmapST.zw;
|
|
#endif
|
|
|
|
OUTPUT_SH4(positionWS, output.normalWS.xyz, GetWorldSpaceNormalizeViewDir(positionWS), output.vertexSH, output.probeOcclusion);
|
|
|
|
#if _FLOWMAP
|
|
output.uv2 = input.uv2;
|
|
#endif
|
|
|
|
#if defined(REQUIRES_VERTEX_SHADOW_COORD_INTERPOLATOR)
|
|
VertexPositionInputs vertexInput = (VertexPositionInputs)0;
|
|
vertexInput.positionWS = positionWS;
|
|
vertexInput.positionCS = output.positionCS;
|
|
output.shadowCoord = GetShadowCoord(vertexInput);
|
|
#endif
|
|
|
|
return output;
|
|
} |