Cg Programming/Unity/Translucent Surfaces半透明表面

2024-03-11 09:08

本文主要是介绍Cg Programming/Unity/Translucent Surfaces半透明表面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本教程涵盖了半透明表面。

这是几个关于光照教程中的其中之一,它超出了Phone反射模型的范围。但是,这是基于章节“光滑镜面高光”中描述的逐像素光照的Phone反射模型。如果你还没有阅读过那个教程,建议你先看一下。

Phone反射模型并没有把半透明考虑进来,即光照会穿透材质。本教程是关于半透明表面的,也就是说这个表面允许光从一个面传到另一个面,比如纸张、衣服、塑料薄膜或者树叶。

这里写图片描述

漫射半透明度

我们将要区分光传输的两种类型:漫射半透明度和向前发散的半透明度,它们各自对应于Phone反射模型中的漫射和高光项。漫射半透明度是类似于Phone反射模型中漫反射项的光的漫射传输:这只是取决于表面法向量和指向光源方向的点乘 — 除非光源在背面我们就使用负向表面法向量,于是漫射半透明光照的等式就是这样:
这里写图片描述
这是许多半透明表面最常见的光照,比如纸张和树叶。

向前散射的半透明

这里写图片描述

一些半透明表面(比如塑料薄膜)几乎是透明的并且允许光线直接透过表面但只有一些向前的散射;也就是说,我们可以透过表面看到光源但图像会有些模糊。这个跟Phone反射模型的镜面项相似(查看章节“镜面高光”中的等式),除了我们用负的光线方向-L替换光线方向R以及指数这里写图片描述现在对应于前向散射光的明锐度。
这里写图片描述

当然,这个前向散射半透明度的模型并不总是准确的,但是它允许我们可以伪造效果并调整参数。

下面的实现基于章节“光滑镜面高光”,它是用Phone反射模型的逐像素光照表示的。这个实现允许渲染背面,并且使用内置Cg函数faceforward(n, v, ng)来翻转表面法向量,如果dot(v, ng) < 0就返回n,否则返回-n。这个方法通常会在轮廓处失败,它会导致一些像素的照明不正确。一个改进的版本会为在章节“双面光滑表面”提到的正面和背面使用不同的通道和颜色。

除了Phone反射模型的高光项,我们也要用以下代码计算漫射半透明和前向散射半透明的光照:

 float3 diffuseTranslucency = attenuation * _LightColor0.rgb * _DiffuseTranslucentColor.rgb * max(0.0, dot(lightDirection, -normalDirection));float3 forwardTranslucency;if (dot(normalDirection, lightDirection) > 0.0) // light source on the wrong side?{forwardTranslucency = float3(0.0, 0.0, 0.0); // no forward-scattered translucency}else // light source on the right side{forwardTranslucency = attenuation * _LightColor0.rgb* _ForwardTranslucentColor.rgb * pow(max(0.0, dot(-lightDirection, viewDirection)), _Sharpness);}

完整的着色器代码

完整的着色器代码为材质常量定义了着色器属性,并且为额外的光源添加了另一个有加性混合但没有环境光照的通道。

Shader "Cg translucent surfaces" {Properties {_Color ("Diffuse Material Color", Color) = (1,1,1,1) _SpecColor ("Specular Material Color", Color) = (1,1,1,1) _Shininess ("Shininess", Float) = 10_DiffuseTranslucentColor ("Diffuse Translucent Color", Color) = (1,1,1,1) _ForwardTranslucentColor ("Forward Translucent Color", Color) = (1,1,1,1) _Sharpness ("Sharpness", Float) = 10}SubShader {Pass {      Tags { "LightMode" = "ForwardBase" } // pass for ambient light and first light sourceCull Off // show frontfaces and backfacesCGPROGRAM#pragma vertex vert  #pragma fragment frag #include "UnityCG.cginc"uniform float4 _LightColor0; // color of light source (from "Lighting.cginc")// User-specified propertiesuniform float4 _Color; uniform float4 _SpecColor; uniform float _Shininess;uniform float4 _DiffuseTranslucentColor; uniform float4 _ForwardTranslucentColor; uniform float _Sharpness;struct vertexInput {float4 vertex : POSITION;float3 normal : NORMAL;};struct vertexOutput {float4 pos : SV_POSITION;float4 posWorld : TEXCOORD0;float3 normalDir : TEXCOORD1;};vertexOutput vert(vertexInput input) {vertexOutput output;float4x4 modelMatrix = _Object2World;float4x4 modelMatrixInverse = _World2Object; output.posWorld = mul(modelMatrix, input.vertex);output.normalDir = normalize(mul(float4(input.normal, 0.0), modelMatrixInverse).xyz);output.pos = mul(UNITY_MATRIX_MVP, input.vertex);return output;}float4 frag(vertexOutput input) : COLOR{float3 normalDirection = normalize(input.normalDir);float3 viewDirection = normalize(_WorldSpaceCameraPos - input.posWorld.xyz);normalDirection = faceforward(normalDirection,-viewDirection, normalDirection);// flip normal if dot(-viewDirection, normalDirection)>0float3 lightDirection;float attenuation;if (0.0 == _WorldSpaceLightPos0.w) // directional light?{attenuation = 1.0; // no attenuationlightDirection = normalize(_WorldSpaceLightPos0.xyz);} else // point or spot light{float3 vertexToLightSource = _WorldSpaceLightPos0.xyz - input.posWorld.xyz;float distance = length(vertexToLightSource);attenuation = 1.0 / distance; // linear attenuation lightDirection = normalize(vertexToLightSource);}// Computation of the Phong reflection model:float3 ambientLighting = UNITY_LIGHTMODEL_AMBIENT.rgb * _Color.rgb;float3 diffuseReflection = attenuation * _LightColor0.rgb * _Color.rgb* max(0.0, dot(normalDirection, lightDirection));float3 specularReflection;if (dot(normalDirection, lightDirection) < 0.0) // light source on the wrong side?{specularReflection = float3(0.0, 0.0, 0.0); // no specular reflection}else // light source on the right side{specularReflection = attenuation * _LightColor0.rgb * _SpecColor.rgb * pow(max(0.0, dot(reflect(-lightDirection, normalDirection), viewDirection)), _Shininess);}// Computation of the translucent illumination:float3 diffuseTranslucency = attenuation * _LightColor0.rgb * _DiffuseTranslucentColor.rgb * max(0.0, dot(lightDirection, -normalDirection));float3 forwardTranslucency;if (dot(normalDirection, lightDirection) > 0.0) // light source on the wrong side?{forwardTranslucency = float3(0.0, 0.0, 0.0); // no forward-scattered translucency}else // light source on the right side{forwardTranslucency = attenuation * _LightColor0.rgb* _ForwardTranslucentColor.rgb * pow(max(0.0, dot(-lightDirection, viewDirection)), _Sharpness);}// Computation of the complete illumination:return float4(ambientLighting + diffuseReflection + specularReflection + diffuseTranslucency + forwardTranslucency, 1.0);}ENDCG}Pass {      Tags { "LightMode" = "ForwardAdd" } // pass for additional light sourcesCull OffBlend One One // additive blending CGPROGRAM#pragma vertex vert  #pragma fragment frag #include "UnityCG.cginc"uniform float4 _LightColor0; // color of light source (from "Lighting.cginc")// User-specified propertiesuniform float4 _Color; uniform float4 _SpecColor; uniform float _Shininess;uniform float4 _DiffuseTranslucentColor; uniform float4 _ForwardTranslucentColor; uniform float _Sharpness;struct vertexInput {float4 vertex : POSITION;float3 normal : NORMAL;};struct vertexOutput {float4 pos : SV_POSITION;float4 posWorld : TEXCOORD0;float3 normalDir : TEXCOORD1;};vertexOutput vert(vertexInput input) {vertexOutput output;float4x4 modelMatrix = _Object2World;float4x4 modelMatrixInverse = _World2Object;output.posWorld = mul(modelMatrix, input.vertex);output.normalDir = normalize(mul(float4(input.normal, 0.0), modelMatrixInverse).xyz);output.pos = mul(UNITY_MATRIX_MVP, input.vertex);return output;}float4 frag(vertexOutput input) : COLOR{float3 normalDirection = normalize(input.normalDir);float3 viewDirection = normalize(_WorldSpaceCameraPos - input.posWorld.xyz);normalDirection = faceforward(normalDirection,-viewDirection, normalDirection);// flip normal if dot(-viewDirection, normalDirection)>0float3 lightDirection;float attenuation;if (0.0 == _WorldSpaceLightPos0.w) // directional light?{attenuation = 1.0; // no attenuationlightDirection = normalize(_WorldSpaceLightPos0.xyz);} else // point or spot light{float3 vertexToLightSource = _WorldSpaceLightPos0.xyz - input.posWorld.xyz;float distance = length(vertexToLightSource);attenuation = 1.0 / distance; // linear attenuation lightDirection = normalize(vertexToLightSource);}// Computation of the Phong reflection model:float3 diffuseReflection = attenuation * _LightColor0.rgb * _Color.rgb* max(0.0, dot(normalDirection, lightDirection));float3 specularReflection;if (dot(normalDirection, lightDirection) < 0.0) // light source on the wrong side?{specularReflection = float3(0.0, 0.0, 0.0); // no specular reflection}else // light source on the right side{specularReflection = attenuation * _LightColor0.rgb * _SpecColor.rgb * pow(max(0.0, dot(reflect(-lightDirection, normalDirection), viewDirection)), _Shininess);}// Computation of the translucent illumination:float3 diffuseTranslucency = attenuation * _LightColor0.rgb * _DiffuseTranslucentColor.rgb * max(0.0, dot(lightDirection, -normalDirection));float3 forwardTranslucency;if (dot(normalDirection, lightDirection) > 0.0) // light source on the wrong side?{forwardTranslucency = float3(0.0, 0.0, 0.0); // no forward-scattered translucency}else // light source on the right side{forwardTranslucency = attenuation * _LightColor0.rgb* _ForwardTranslucentColor.rgb * pow(max(0.0, dot(-lightDirection, viewDirection)), _Sharpness);}// Computation of the complete illumination:return float4(diffuseReflection + specularReflection + diffuseTranslucency + forwardTranslucency, 1.0);}ENDCG}}
}

总结

恭喜!你完成了半透明表面的教程,它非常常见但又不能用Phone反射模型来建模。我们学到了:

  • 什么是半透明表面。
  • 哪种半透明是最常见的(漫射半透明和前向散射半透明)。
  • 如何实现漫射半透明和前向散射半透明。

这篇关于Cg Programming/Unity/Translucent Surfaces半透明表面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/797358

相关文章

UE5 半透明阴影 快速解决方案

Step 1: 打开该选项 Step 2: 将半透明材质给到模型后,设置光照的Shadow Resolution Scale,越大,阴影的效果越好

【电子通识】半导体工艺——保护晶圆表面的氧化工艺

在文章【电子通识】半导体工艺——晶圆制造中我们讲到晶圆的一些基础术语和晶圆制造主要步骤:制造锭(Ingot)、锭切割(Wafer Slicing)、晶圆表面抛光(Lapping&Polishing)。         那么其实当晶圆暴露在大气中或化学物质中的氧气时就会形成氧化膜。这与铁(Fe)暴露在大气时会氧化生锈是一样的道理。 氧化膜的作用         在半导体晶圆

Unity Post Process Unity后处理学习日志

Unity Post Process Unity后处理学习日志 在现代游戏开发中,后处理(Post Processing)技术已经成为提升游戏画面质量的关键工具。Unity的后处理栈(Post Processing Stack)是一个强大的插件,它允许开发者为游戏场景添加各种视觉效果,如景深、色彩校正、辉光、模糊等。这些效果不仅能够增强游戏的视觉吸引力,还能帮助传达特定的情感和氛围。 文档

Unity协程搭配队列开发Tips弹窗模块

概述 在Unity游戏开发过程中,提示系统是提升用户体验的重要组成部分。一个设计良好的提示窗口不仅能及时传达信息给玩家,还应当做到不干扰游戏流程。本文将探讨如何使用Unity的协程(Coroutine)配合队列(Queue)数据结构来构建一个高效且可扩展的Tips弹窗模块。 技术模块介绍 1. Unity协程(Coroutines) 协程是Unity中的一种特殊函数类型,允许异步操作的实现

Unity 资源 之 Super Confetti FX:点亮项目的璀璨粒子之光

Unity 资源 之 Super Confetti FX:点亮项目的璀璨粒子之光 一,前言二,资源包内容三,免费获取资源包 一,前言 在创意的世界里,每一个细节都能决定一个项目的独特魅力。今天,要向大家介绍一款令人惊艳的粒子效果包 ——Super Confetti FX。 二,资源包内容 💥充满活力与动态,是 Super Confetti FX 最显著的标签。它宛如一位

Unity数据持久化 之 一个通过2进制读取Excel并存储的轮子(4)

本文仅作笔记学习和分享,不用做任何商业用途 本文包括但不限于unity官方手册,unity唐老狮等教程知识,如有不足还请斧正​​ Unity数据持久化 之 一个通过2进制读取Excel并存储的轮子(3)-CSDN博客  这节就是真正的存储数据了   理清一下思路: 1.存储路径并检查 //2进制文件类存储private static string Data_Binary_Pa

Unity Adressables 使用说明(一)概述

使用 Adressables 组织管理 Asset Addressables 包基于 Unity 的 AssetBundles 系统,并提供了一个用户界面来管理您的 AssetBundles。当您使一个资源可寻址(Addressable)时,您可以使用该资源的地址从任何地方加载它。无论资源是在本地应用程序中可用还是存储在远程内容分发网络上,Addressable 系统都会定位并返回该资源。 您

Unity Adressables 使用说明(六)加载(Load) Addressable Assets

【概述】Load Addressable Assets Addressables类提供了加载 Addressable assets 的方法。你可以一次加载一个资源或批量加载资源。为了识别要加载的资源,你需要向加载方法传递一个键或键列表。键可以是以下对象之一: Address:包含你分配给资源的地址的字符串。Label:包含分配给一个或多个资源的标签的字符串。AssetReference Obj

在Unity环境中使用UTF-8编码

为什么要讨论这个问题         为了避免乱码和更好的跨平台         我刚开始开发时是使用VS开发,Unity自身默认使用UTF-8 without BOM格式,但是在Unity中创建一个脚本,使用VS打开,VS自身默认使用GB2312(它应该是对应了你电脑的window版本默认选取了国标编码,或者是因为一些其他的原因)读取脚本,默认是看不到在VS中的编码格式,下面我介绍一种简单快

Unity数据持久化 之 一个通过2进制读取Excel并存储的轮子(3)

本文仅作笔记学习和分享,不用做任何商业用途 本文包括但不限于unity官方手册,unity唐老狮等教程知识,如有不足还请斧正​​ Unity数据持久化 之 一个通过2进制读取Excel并存储的轮子(2) (*****生成数据结构类的方式特别有趣****)-CSDN博客 做完了数据结构类,该做一个存储类了,也就是生成一个字典类(只是声明)  实现和上一节的数据结构类的方式大同小异,所