IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 漫反射实现 - UnityShader -> 正文阅读

[游戏开发]漫反射实现 - UnityShader

漫反射分为两种实现

  • 逐顶点漫反射(主要依靠顶点着色器,计算顶点的光照)
  • 逐片元漫反射(主要依靠片元着色器,计算片元的光照)

使用的公式是兰伯特定律
c d i f f u s e = ( c l i g h t ? m d i f f u s e ) cos ? θ (1) c_{diffuse} = (c_{light} \cdot m_{diffuse})\cos{\theta}\tag{1} cdiffuse?=(clight??mdiffuse?)cosθ(1)
c o s θ = n ^ ? l ^ (2) cos{\theta} = \widehat{n} \cdot \widehat{l}\tag{2} cosθ=n ?l (2)

在兰伯特的基础上增加亮光(添加两个偏移)
c d i f f u s e = ( c l i g h t ? m d i f f u s e ) ( n ^ ? l ^ ? 0.5 + 0.5 ) (3) c_{diffuse} = (c_{light} \cdot m_{diffuse})( \widehat{n} \cdot \widehat{l} * 0.5 + 0.5)\tag{3} cdiffuse?=(clight??mdiffuse?)(n ?l ?0.5+0.5)(3)

c l i g h t c_{light} clight? 是光线的颜色, m d i f f u s e m_{diffuse} mdiffuse? 是材质的颜色, c o s θ cos{\theta} cosθ是指法线与光线方向的角度

逐顶点漫反射

Shader "Lit/DiffuseLitShader1"
{
    Properties
    {
        _Diffuse ("Diffuse", Color) = (1, 1, 1, 1)
    }
    SubShader
    {
        Pass
        {
            Tags { "LightMode" = "ForwardBase" }
            
            CGPROGRAM
            #pragma vertex vert
            #pragma fragment frag

            #include <UnityCG.cginc>
            #include <UnityLightingCommon.cginc>
            #include <UnityShaderUtilities.cginc>

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

            struct v2f
            {
                float4 pos : SV_POSITION;
                fixed3 color : COLOR0;
            };

            fixed4 _Diffuse;

            //逐顶点漫反射
            v2f vert(a2v v)
            {
                v2f o;
                //设置裁剪空间
                o.pos = UnityObjectToClipPos(v.vertex.xyz);
                
                //得到环境光
                fixed3 ambient = UNITY_LIGHTMODEL_AMBIENT.xyz;

                //从物体坐标的法向量变换到全局坐标的法向量
                float3 worldNormal = normalize(mul(v.normal, (float3x3)unity_WorldToObject));
                
                //光照方向
                fixed3 litDir = normalize(_WorldSpaceLightPos0.xyz);
                
                //兰伯特定律 c = (c * m) max(0, dot(n.normalize, l.normalize)) = (c * m) * cos
                //fixed3 diffuse = _LightColor0.rgb * _Diffuse.rgb * saturate(dot(worldNormal, litDir));

                //半兰伯特定理 c = (c * m)(0.5 * cos + 0.5), 可实现暗部增强亮光
                fixed3 diffuse = _LightColor0.rgb * _Diffuse.rgb * (dot(worldNormal, litDir) * 0.5 + 0.5);
                

                o.color = ambient + diffuse;

                return o;
            }

            fixed4 frag(v2f i) : SV_Target
            {
                return fixed4(i.color, 1.0);
            }
            ENDCG
        }
    }
    
    FallBack "Diffuse"
}

逐片元漫反射

Shader "Lit/DiffuseLitShader2"
{
    Properties
    {
        _Diffuse("Diffuse", Color) = (1, 1, 1, 1)
    }
    SubShader
    {
        Pass
        {
            CGPROGRAM
            #pragma vertex vert
            #pragma fragment frag

            #include <UnityCG.cginc>
            #include <UnityShaderUtilities.cginc>
            #include <UnityLightingCommon.cginc>

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

            struct v2f
            {
                float4 pos : SV_POSITION;
                float4 worldNormal : TEXCOORD0;
            };

            fixed4 _Diffuse;

            v2f vert(a2v v)
            {
                v2f o;
                
                //得到裁剪空间
                o.pos = UnityObjectToClipPos(v.pos.xyz);

                //获得世界空间的法向量,并保存在 uv 中
                o.worldNormal = float4(UnityObjectToWorldNormal(v.normal.xyz), 1.0);

                return o;
            }

            fixed4 frag(v2f i) : SV_Target
            {
                //得到 ambient
                fixed3 ambient = UNITY_LIGHTMODEL_AMBIENT.xyz;

                //gl 的 方向
                float3 litDir = normalize(_WorldSpaceLightPos0.xyz);

                //使用 兰伯特定律
                //fixed3 diffuse = _LightColor0.rgb * _Diffuse * saturate(dot(i.worldNormal.xyz, litDir));

                //使用 半兰伯特定律
                fixed3 diffuse = _LightColor0.rgb * _Diffuse * (dot(i.worldNormal.xyz, litDir) * 0.5 + 0.5);

                return fixed4(diffuse + ambient, 1.0);
            }
            ENDCG
        }
    }
    
    FallBack "Diffuse"
}

来源为 Unity Shader 入门精要这本书 - 漫反射光照的实现

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-09-21 00:59:23  更:2022-09-21 00:59:59 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/11 11:06:36-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码