位置: 编程技术 - 正文
推荐整理分享Unity3D中的Post effects(unityprefab),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:Unity3d中的扇形检测,unity post processing stack,unityprefab,unityprefab,unity form,Unity3d中的碰撞器和触发器的区别,Unity3d中的碰撞器和触发器的区别,Unity3d中的扇形检测,内容如对您有帮助,希望把文章链接给更多的朋友!
所谓post effects,就是后处理,在渲染的流水线中属于最后的阶段,处理的对象是由场景生成的一张图片。常见的后处理效果有HDR,Motion Blur等,通过对屏幕空间的后处理,可以很方便的调整游戏整体的风格。下面是要用到的场景。
Unity的ShaderLab内建变量为了编程方便,Shaderlab中内建了一些变量,可以在Shader中直接引用。
这里要用到的 _SinTime - 时间的的正弦函数。
更多的内置变量可以参考这里 ShaderLab built-in values
基本步骤主要思路就是首先1)将摄像机的RenderTexture传递到Shder里面,Shader在GPU中进行计算,然后2)再将处理后的图片传递回来。
第一步需要用C#脚本来处理,第二步要自己创建Shader。
灰度创建脚本
TestRenderImage.cs
由于要使用Shader,在程序中动态地创建了一个纹理。
OnRenderImage是Unity内建的回调函数,在所有渲染完成后被调用,来渲染图片的后期处理效果。
在代码中,主要是改变Shader中的_LuminosityAmount变量。
Graphics.Blit函数用于拷贝源纹理到目的渲染纹理。
这主要是用于实现图像效果。Blit设置dest到激活的渲染纹理,在材质上设置source作为_MainTex属性,并且绘制一个全屏Quad。
将脚本拖拽到MainCamera上面。
接下来创建一个Shader,内容如下
拖拽到刚才的脚本上,调节面板上的参数,就可以得到黑白程度不同的效果。像素画这个效果能够将3D场景直接转换成像素风。
直接看Shader
在C#中修改_NumPixel变量就可以得到不同程度像素风格的图片了。渲染深度首先要将相机的深度图传递到shader中去。在shader中,只要申明
sampler2D _CameraDepthTexture变量就可以对相机的深度图进行引用。
还需要在脚本的Update函数中加入
最后贴一下Shade代码运行结果将Post effects融入到Game Play游戏中常常会用到老电影的效果,思路其实就是图层的叠加。
+ + + =
shader代码
barrelDistortion用于产生一个镜头的畸变。公式的来由:
If (u,v) are the coordinates of a feature in the undistorted perfect image plane, then (u', v') are the coordinates of the feature on the distorted image plate, ie the scanned or captured image from the camera. The distortion occurs radially away from the image center, with correction for the image aspect ratio (image_aspect = physical image width/height), as follows:The constant k is the distortion coefficient that appears on the lens panel and through Sizzle. It is generally a small positive or negative number under 1%. The constant kcube is the cubic distortion value found on the image preprocessor's lens panel: it can be used to undistort or redistort images, but it does not affect or get computed by the solver. When no cubic distortion is needed, neither is the square root, saving time.
其他部分的解释参考参考中的文章。
参考UnityShaders and Effects Cookbook
【Unity Shaders】游戏性和画面特效——创建一个老电影式的画面特效
Lens Distortion White Paper -
Unity3D - 资源管理 转载自:
Unity3D之Transform参数 转载自:
Unity3D使用shader实现灰图 转载自:
标签: unityprefab
本文链接地址:https://www.jiuchutong.com/biancheng/378760.html 转载请保留说明!友情链接: 武汉网站建设