找回密码
 立即注册
查看: 131|回复: 0

《Unity Shader 入门精要》从Bulit-in 到URP (HLSL)Chapter15.2-水波效果

[复制链接]
发表于 2024-7-15 18:00 | 显示全部楼层 |阅读模式
前言:
已经进入“高级篇”啦,但愿大师多多撑持,多多存眷,这将对我发生非常愉悦的正反馈~

“《Unity Shader 入门精要》从Bulit-in 到URP”是一个辅佐Unity Shader学习者以冯乐乐女神《Unity Shader 入门精要》为基础学习用HLSL语言编写URP着色器的案例教学系列。

作者自学能力有限,抛砖引玉,如有建议和问题请各位大佬和同仁交流斧正。
Bulit-in版:
  1. // Upgrade NOTE: replaced '_Object2World' with 'unity_ObjectToWorld'
  2. // Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'
  3. Shader ”Unity Shaders Book/Chapter 15/Water Wave” {
  4.         Properties {
  5.                 _Color (”Main Color”, Color) = (0, 0.15, 0.115, 1)
  6.                 _MainTex (”Base (RGB)”, 2D) = ”white” {}
  7.                 _WaveMap (”Wave Map”, 2D) = ”bump” {}
  8.                 _Cubemap (”Environment Cubemap”, Cube) = ”_Skybox” {}
  9.                 _WaveXSpeed (”Wave Horizontal Speed”, Range(-0.1, 0.1)) = 0.01
  10.                 _WaveYSpeed (”Wave Vertical Speed”, Range(-0.1, 0.1)) = 0.01
  11.                 _Distortion (”Distortion”, Range(0, 100)) = 10
  12.         }
  13.         SubShader {
  14.                 // We must be transparent, so other objects are drawn before this one.
  15.                 Tags { ”Queue”=”Transparent” ”RenderType”=”Opaque” }
  16.                
  17.                 // This pass grabs the screen behind the object into a texture.
  18.                 // We can access the result in the next pass as _RefractionTex
  19.                 GrabPass { ”_RefractionTex” }
  20.                
  21.                 Pass {
  22.                         Tags { ”LightMode”=”ForwardBase” }
  23.                        
  24.                         CGPROGRAM
  25.                        
  26.                         #include ”UnityCG.cginc”
  27.                         #include ”Lighting.cginc”
  28.                        
  29.                         #pragma multi_compile_fwdbase
  30.                        
  31.                         #pragma vertex vert
  32.                         #pragma fragment frag
  33.                        
  34.                         fixed4 _Color;
  35.                         sampler2D _MainTex;
  36.                         float4 _MainTex_ST;
  37.                         sampler2D _WaveMap;
  38.                         float4 _WaveMap_ST;
  39.                         samplerCUBE _Cubemap;
  40.                         fixed _WaveXSpeed;
  41.                         fixed _WaveYSpeed;
  42.                         float _Distortion;       
  43.                         sampler2D _RefractionTex;
  44.                         float4 _RefractionTex_TexelSize;
  45.                        
  46.                         struct a2v {
  47.                                 float4 vertex : POSITION;
  48.                                 float3 normal : NORMAL;
  49.                                 float4 tangent : TANGENT;
  50.                                 float4 texcoord : TEXCOORD0;
  51.                         };
  52.                        
  53.                         struct v2f {
  54.                                 float4 pos : SV_POSITION;
  55.                                 float4 scrPos : TEXCOORD0;
  56.                                 float4 uv : TEXCOORD1;
  57.                                 float4 TtoW0 : TEXCOORD2;  
  58.                                 float4 TtoW1 : TEXCOORD3;  
  59.                                 float4 TtoW2 : TEXCOORD4;
  60.                         };
  61.                        
  62.                         v2f vert(a2v v) {
  63.                                 v2f o;
  64.                                 o.pos = UnityObjectToClipPos(v.vertex);
  65.                                
  66.                                 o.scrPos = ComputeGrabScreenPos(o.pos);
  67.                                
  68.                                 o.uv.xy = TRANSFORM_TEX(v.texcoord, _MainTex);
  69.                                 o.uv.zw = TRANSFORM_TEX(v.texcoord, _WaveMap);
  70.                                
  71.                                 float3 worldPos = mul(unity_ObjectToWorld, v.vertex).xyz;  
  72.                                 fixed3 worldNormal = UnityObjectToWorldNormal(v.normal);  
  73.                                 fixed3 worldTangent = UnityObjectToWorldDir(v.tangent.xyz);  
  74.                                 fixed3 worldBinormal = cross(worldNormal, worldTangent) * v.tangent.w;
  75.                                
  76.                                 o.TtoW0 = float4(worldTangent.x, worldBinormal.x, worldNormal.x, worldPos.x);  
  77.                                 o.TtoW1 = float4(worldTangent.y, worldBinormal.y, worldNormal.y, worldPos.y);  
  78.                                 o.TtoW2 = float4(worldTangent.z, worldBinormal.z, worldNormal.z, worldPos.z);  
  79.                                
  80.                                 return o;
  81.                         }
  82.                        
  83.                         fixed4 frag(v2f i) : SV_Target {
  84.                                 float3 worldPos = float3(i.TtoW0.w, i.TtoW1.w, i.TtoW2.w);
  85.                                 fixed3 viewDir = normalize(UnityWorldSpaceViewDir(worldPos));
  86.                                 float2 speed = _Time.y * float2(_WaveXSpeed, _WaveYSpeed);
  87.                                
  88.                                 // Get the normal in tangent space
  89.                                 fixed3 bump1 = UnpackNormal(tex2D(_WaveMap, i.uv.zw + speed)).rgb;
  90.                                 fixed3 bump2 = UnpackNormal(tex2D(_WaveMap, i.uv.zw - speed)).rgb;
  91.                                 fixed3 bump = normalize(bump1 + bump2);
  92.                                
  93.                                 // Compute the offset in tangent space
  94.                                 float2 offset = bump.xy * _Distortion * _RefractionTex_TexelSize.xy;
  95.                                 i.scrPos.xy = offset * i.scrPos.z + i.scrPos.xy;
  96.                                 fixed3 refrCol = tex2D( _RefractionTex, i.scrPos.xy/i.scrPos.w).rgb;
  97.                                
  98.                                 // Convert the normal to world space
  99.                                 bump = normalize(half3(dot(i.TtoW0.xyz, bump), dot(i.TtoW1.xyz, bump), dot(i.TtoW2.xyz, bump)));
  100.                                 fixed4 texColor = tex2D(_MainTex, i.uv.xy + speed);
  101.                                 fixed3 reflDir = reflect(-viewDir, bump);
  102.                                 fixed3 reflCol = texCUBE(_Cubemap, reflDir).rgb * texColor.rgb * _Color.rgb;
  103.                                
  104.                                 fixed fresnel = pow(1 - saturate(dot(viewDir, bump)), 4);
  105.                                 fixed3 finalColor = reflCol * fresnel + refrCol * (1 - fresnel);
  106.                                
  107.                                 return fixed4(finalColor, 1);
  108.                         }
  109.                        
  110.                         ENDCG
  111.                 }
  112.         }
  113.         // Do not cast shadow
  114.         FallBack Off
  115. }
复制代码
URP版:

Unity项目源码:
注意:在URP中GrabPass { ”_RefractionTex” }被打消,我们需要使用unity自带的屏幕空间Opaque贴图,即“_CameraOpaqueTexture”,只需在URP Asset 的Inspector窗口打开下图选项就可以在shader中直接调用。

  1. Shader ”Unlit/Chapter15-WaterWave”
  2. {
  3.     Properties {
  4.                 _Color (”Main Color”, Color) = (0, 0.15, 0.115, 1)
  5.                 _MainTex (”Base (RGB)”, 2D) = ”white” {}
  6.                 _WaveMap (”Wave Map”, 2D) = ”bump” {}
  7.                 _Cubemap (”Environment Cubemap”, Cube) = ”_Skybox” {}
  8.                 _WaveXSpeed (”Wave Horizontal Speed”, Range(-0.1, 0.1)) = 0.01
  9.                 _WaveYSpeed (”Wave Vertical Speed”, Range(-0.1, 0.1)) = 0.01
  10.                 _Distortion (”Distortion”, Range(0, 100)) = 10
  11.         }
  12.     SubShader {
  13.                 // We must be transparent, so other objects are drawn before this one.
  14.                 Tags {”RenderPipeline” = ”UniversalPipeline” ”Queue”=”Transparent” ”RenderType”=”Opaque” }
  15.                
  16.                 // This pass grabs the screen behind the object into a texture.
  17.                 // We can access the result in the next pass as _RefractionTex
  18.                 //GrabPass { ”_RefractionTex” }
  19.                
  20.                 Pass {
  21.                         Tags { ”LightMode”=”UniversalForward” }
  22.                        
  23.                         HLSLPROGRAM
  24.                        
  25.                         #pragma vertex vert
  26.                         #pragma fragment frag
  27.                        
  28.             #include ”Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl”
  29.                     #include ”Packages/com.unity.render-pipelines.universal/ShaderLibrary/Lighting.hlsl”
  30.         CBUFFER_START(UnityPerMaterial)
  31.             half4 _Color;
  32.                         float4 _MainTex_ST;
  33.                         float4 _WaveMap_ST;
  34.                         half _WaveXSpeed;
  35.                         half _WaveYSpeed;
  36.                         float _Distortion;       
  37.                         float4 _CameraOpaqueTexture_TexelSize;
  38.         CBUFFER_END
  39.                        
  40.                         TEXTURE2D(_MainTex);                SAMPLER(sampler_MainTex);
  41.             TEXTURE2D(_WaveMap);                SAMPLER(sampler_WaveMap);
  42.             TEXTURE2D(_CameraOpaqueTexture);    SAMPLER(sampler_CameraOpaqueTexture);
  43.             TEXTURECUBE(_Cubemap);              SAMPLER(sampler_Cubemap);
  44.                        
  45.                         struct a2v {
  46.                                 float4 vertex : POSITION;
  47.                                 float3 normal : NORMAL;
  48.                                 float4 tangent : TANGENT;
  49.                                 float4 texcoord : TEXCOORD0;
  50.                         };
  51.                        
  52.                         struct v2f {
  53.                                 float4 pos : SV_POSITION;
  54.                                 float4 scrPos : TEXCOORD0;
  55.                                 float4 uv : TEXCOORD1;
  56.                                 float4 TtoW0 : TEXCOORD2;  
  57.                                 float4 TtoW1 : TEXCOORD3;  
  58.                                 float4 TtoW2 : TEXCOORD4;
  59.                         };
  60.                        
  61.                         v2f vert(a2v v) {
  62.                                 v2f o;
  63.                                
  64.                 VertexPositionInputs positionInputs = GetVertexPositionInputs(v.vertex.xyz);
  65.                 o.pos = positionInputs.positionCS;
  66.                 VertexNormalInputs normalInput = GetVertexNormalInputs(v.normal, v.tangent);
  67.                
  68.                 //o.pos = UnityObjectToClipPos(v.vertex);
  69.                                
  70.                                 o.scrPos = positionInputs.positionNDC;
  71.                                
  72.                                 o.uv.xy = TRANSFORM_TEX(v.texcoord, _MainTex);
  73.                                 o.uv.zw = TRANSFORM_TEX(v.texcoord, _WaveMap);
  74.                                
  75.                                 o.TtoW0 = float4(normalInput.tangentWS.x, normalInput.bitangentWS.x, normalInput.normalWS.x, positionInputs.positionWS.x);  
  76.                                 o.TtoW1 = float4(normalInput.tangentWS.y, normalInput.bitangentWS.y, normalInput.normalWS.y, positionInputs.positionWS.y);  
  77.                                 o.TtoW2 = float4(normalInput.tangentWS.z, normalInput.bitangentWS.z, normalInput.normalWS.z, positionInputs.positionWS.z);  
  78.                                
  79.                                 return o;
  80.                         }
  81.                        
  82.                         half4 frag(v2f i) : SV_Target {
  83.                                 float3 positionWS = float3(i.TtoW0.w, i.TtoW1.w, i.TtoW2.w);
  84.                                 half3 viewDir = normalize(_WorldSpaceCameraPos.xyz - positionWS);
  85.                                 float2 speed = _Time.y * float2(_WaveXSpeed, _WaveYSpeed);
  86.                                
  87.                                 // Get the normal in tangent space
  88.                                 half3 bump1 = UnpackNormal(SAMPLE_TEXTURE2D(_WaveMap, sampler_WaveMap, i.uv.zw + speed)).rgb;
  89.                                 half3 bump2 = UnpackNormal(SAMPLE_TEXTURE2D(_WaveMap, sampler_WaveMap, i.uv.zw - speed)).rgb;
  90.                                 half3 bump = normalize(bump1 + bump2);
  91.                                
  92.                                 // Compute the offset in tangent space
  93.                                 float2 offset = bump.xy * _Distortion * _CameraOpaqueTexture_TexelSize.xy;
  94.                                 i.scrPos.xy = offset * i.scrPos.z + i.scrPos.xy;
  95.                                 half3 refrCol = SAMPLE_TEXTURE2D( _CameraOpaqueTexture, sampler_CameraOpaqueTexture, i.scrPos.xy/i.scrPos.w).rgb;
  96.                                
  97.                                 // Convert the normal to world space
  98.                                 bump = normalize(half3(dot(i.TtoW0.xyz, bump), dot(i.TtoW1.xyz, bump), dot(i.TtoW2.xyz, bump)));
  99.                                 half4 texColor = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.uv.xy + speed);
  100.                                 half3 reflDir = reflect(-viewDir, bump);
  101.                                 half3 reflCol = SAMPLE_TEXTURECUBE(_Cubemap, sampler_Cubemap, reflDir).rgb * texColor.rgb * _Color.rgb;
  102.                                
  103.                                 half fresnel = pow(1 - saturate(dot(viewDir, bump)), 4);
  104.                                 half3 finalColor = reflCol * fresnel + refrCol * (1 - fresnel);
  105.                                
  106.                                 return half4(finalColor, 1);
  107.                         }
  108.                        
  109.                         ENDHLSL
  110.                 }
  111.         }
  112.         FallBack ”Packages/com.unity.render-pipelines.universal/FallbackError”
  113. }
复制代码
效果图:





如有收获,请留下“存眷”和“附和”

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-21 21:00 , Processed in 0.107356 second(s), 28 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表