【Unity Shader】反射

cpp 复制代码
// Upgrade NOTE: replaced '_Object2World' with 'unity_ObjectToWorld'
// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'

Shader "Custom/Reflection"{
	Properties{
		_Color("Color Tint", Color) = (1,1,1,1)
		_ReflectColor("Reflection Color", Color) = (1,1,1,1)//控制反射颜色
		_ReflectAmount("Reflect Amount", Range(0, 1)) = 1//控制反射程度
		_Cubemap("Reflection Cubemap", Cube) = "_Skybox"{}//用于模拟反射的环境映射纹理
	}
	SubShader{
		//Opaque意味渲染不透明对象
		Tags{"RenderType" = "Opaque" "Queue" = "Geometry"}
		Pass{
			Tags{"LightMode" = "ForwardBase"}
			CGPROGRAM

			#pragma multi_compile_fwdbase;	//前向渲染
			#pragma vertex vert
			#pragma fragment frag
			#include "Lighting.cginc"
			#include "AutoLight.cginc"

			fixed4 _Color;
			fixed4 _ReflectColor;
			fixed _ReflectAmount;
			samplerCUBE _Cubemap;

			struct a2v{
				float4 vertex : POSITION;
				float3 normal : NORMAL;
			};

			struct v2f{
				float4 pos : SV_POSITION;
				float3 worldPos : TEXCOORD0;
				float3 worldNormal : TEXCOORD1;
				fixed3 worldViewDir : TEXCOORD2;
				fixed3 worldRefl : TEXCOORD3;
				SHADOW_COORDS(4)
			};

			v2f vert(a2v v){
				v2f o;
				o.pos = UnityObjectToClipPos(v.vertex);
				o.worldNormal = UnityObjectToWorldNormal(v.normal);
				o.worldPos = mul(unity_ObjectToWorld, v.vertex).xyz;
				o.worldViewDir = UnityWorldSpaceViewDir(o.worldPos);
				//o.worldViewDir是物体朝向视角的向量,取负号表示从视角方向看向物体的方向。
				o.worldRefl = reflect(-o.worldViewDir, o.worldNormal);

				TRANSFER_SHADOW(o);
				return o;
			};

			fixed4 frag(v2f i) : SV_Target{
				fixed3 worldNormal = normalize(i.worldNormal);
				fixed3 worldLightDir = normalize(UnityWorldSpaceLightDir(i.worldPos));
				fixed3 worldViewDir = normalize(i.worldViewDir);

				fixed3 ambient = UNITY_LIGHTMODEL_AMBIENT.xyz;	//环境光颜色
				fixed3 diffuse = _LightColor0.rgb * _Color.rgb * max(0, dot(worldNormal, worldLightDir));
				//texCUBE(_Cubemap, i.worldRefl).rgb:这是从立方体贴图(_Cubemap)中根据反射向量 i.worldRefl 采样出的颜色值。
				//_ReflectColor.rgb:是材质的反射颜色。用于调节反射光的颜色强度和色调。这个值通常由材质属性指定。
				fixed3 reflection = texCUBE(_Cubemap, i.worldRefl).rgb * _ReflectColor.rgb;		//反射颜色
				//Unity 着色器中的一个宏,用于计算光的衰减(Attenuation)
				//atten:这是用来存储光衰减值的变量, i:这是包含片元(像素)数据的结构体,它用于提供片元的位置信息给衰减计算。
				//i.worldPos:这是当前片元的世界空间位置,用来计算光源与片元之间的距离,从而决定光的衰减。
				UNITY_LIGHT_ATTENUATION(atten, i, i.worldPos);
				//_ReflectAmount:控制漫反射光和反射光之间的混合比例。
				// 当 _ReflectAmount 靠近 0 时,lerp 倾向于选择 diffuse(漫反射光)。
				// 当 _ReflectAmount 靠近 1 时,lerp 倾向于选择 reflection(反射光)。
				fixed3 color = ambient + lerp(diffuse, reflection, _ReflectAmount) * atten;
				//这行代码将颜色 color(RGB 值)和不透明度 1.0(A 值)组合成一个 fixed4 类型的向量,并返回给渲染管线
				return fixed4(color, 1.0);
			}

			ENDCG
		}
	}
	FallBack "Reflective/VertexLit"
}
相关推荐
向宇it12 小时前
【unity小技巧】unity 什么是反射?反射的作用?反射的使用场景?反射的缺点?常用的反射操作?反射常见示例
开发语言·游戏·unity·c#·游戏引擎
Heaphaestus,RC13 小时前
【Unity3D】获取 GameObject 的完整层级结构
unity·c#
芋芋qwq13 小时前
Unity UI射线检测 道具拖拽
ui·unity·游戏引擎
tealcwu14 小时前
【Unity服务】关于Unity LevelPlay的基本情况
unity·游戏引擎
大眼睛姑娘17 小时前
Unity3d场景童话梦幻卡通Q版城镇建筑植物山石3D模型游戏美术素材
unity·游戏美术
鹿野素材屋21 小时前
Unity Dots下的动画合批工具:GPU ECS Animation Baker
unity·游戏引擎
小春熙子1 天前
Unity图形学之着色器之间传递参数
unity·游戏引擎·技术美术·着色器
虾球xz1 天前
游戏引擎学习第15天
学习·游戏引擎
Java Fans1 天前
在Unity中实现电梯升降功能的完整指南
unity·游戏引擎
GrimRaider2 天前
[Unity]TileMap开发,TileMap地图缝隙问题
unity·游戏引擎·tilemap