unity5 人皮渲染  Skin Shading

换了一种方法,优化了一下代码,unity5效果很好,消耗不大

点开可查看大图

加入了次表面散射的阴影与自阴影

unity5  ocean real-time rendering海洋渲染

unity5  fur real-time rendering 毛皮渲染

unity4  Non-Photorealistic Rendering 各种卡通素描绘画渲染

unity5 MLAA  (Morphological Antialiasing)

unity5 Decal With Diffuse

还存在一些问题。。=  =、、、

unity5 TSSAO  (Temporal Screen Space Ambient Occlusion)

过程:先是完成SSAO再完成TSSAO再filter滤去noise

unity4 冰渲染(以前做的)

YouTube(需墙):https://www.youtube.com/watch?v=FeV1u3EGD8Y

unity5 屏幕空间次表面散射Screen-Space Subsurface Scattering方法1

简称SSSSS哈哈哈

unity5 屏幕空间次表面散射Screen-Space Subsurface Scattering方法2

用unity5自带的standard shader

 

Cook-Torrance

 

backmann

Atmospheric Scattering in Unity5

ver1

no Rayleigh scattering&Mie scattering

with Rayleigh scattering&Mie scattering

point light

ver2

screen space directional occlusion(SSDO) in Unity5

也许是哪里出了问题。。效果一般

16采样点

Gird

Random

Screen-Space Bent Cones (SSBC) in Unity5

噪音少、高度保留了纹理细节

SWAP Force Depth-of-Field Shader in Unity5

博主又弄了一下sparkle版的,改动下模糊方式即可,这个可以自由发挥

60fps完美运行

普通模糊:

sparkle:

Square Enix论文-Fast Indirect illumination Using Two Virtual Spherical Gaussian Lights  in Unity5

博主实现(in Unity3d 5)

used one spotlight

史克威尔效果展示(夜光引擎?)

Unity3d PBR海水渲染

三层水

Unity3d BTDF实时折射模拟有粗糙度的半透明物体

Unity Parallax-corrected cubemap

发现在创建cubemap的相机上加一些post-processing会有一些有趣的效果,可以多加尝试

Unity  Physically Based Lighting / IES Lighting

Spot Light

Point Light

原光源

 

博主近期渲染:最近用unity5弄的一些渲染

---- by wolf96  http://blog.csdn.net/wolf96

最近用unity5弄的一些渲染的更多相关文章

  1. [新]最近用unity5弄的一些渲染

    Unity Separable Bokeh Depth-of-Field Hexagonal Blur Unity3d Realtime Dynamic Clouds Rendering hemisp ...

  2. Unity5 GI与PBS渲染从用法到着色代码

    http://www.cnblogs.com/zhouxin/p/5168632.html 本文主要介绍Untiy5以后的GI,PBS,以及光源探头,反射探头的用法以及在着色器代码中如何发挥作用,GI ...

  3. Unity4、Unity5移动平台多线程渲染在部分安卓手机上会造成闪退

    你看到的crash堆栈可能是这样的: SIGSEGV(SEGV_MAPERR)   #00  pc 0001276c                          /system/lib/libc ...

  4. Screen-Space Bent Cones (SSBC) in Unity5

    噪音少.高度保留了纹理细节 博主近期渲染:最近用unity5弄的一些渲染 ---- by wolf96  http://blog.csdn.net/wolf96

  5. screen space directional occlusion(SSDO) in Unity5

    也许是哪里出了问题..效果一般 16采样点 Gird . Random 博主近期渲染:最近用unity5弄的一些渲染 ---- by wolf96  http://blog.csdn.net/wolf ...

  6. Atmospheric Scattering in Unity5

    本次实践效果仅有Atmospheric Scattering和AA,并无其他post-processing,看到类似depth of field等的效果全部是Atmospheric Scatterin ...

  7. Unity3d 屏幕空间人体皮肤知觉渲染&次表面散射Screen-Space Perceptual Rendering & Subsurface Scattering of Human Skin

    之前的人皮渲染相关 前篇1:unity3d Human skin real time rendering 真实模拟人皮实时渲染 前篇2:unity3d Human skin real time ren ...

  8. Unity3d PBR海水渲染

    三层水 博主近期渲染:近期用unity5弄的一些渲染 ---- by wolf96  http://blog.csdn.net/wolf96

  9. Unity3d Fast Indirect illumination Using Two Virtual Spherical Gaussian Lights-Square Enix论文

    博主实现(in Unity3d 5) used one spotlight 史克威尔效果展示(夜光引擎?) 博主近期渲染:最近用unity5弄的一些渲染 ---- by wolf96  http:// ...

随机推荐

  1. PHP初学留神(一)

    1.转义字符的使用 这个问题是在php下编写SQL语句的字符串时遇到的,因为在where后面的条件判断经常要用到双引号("")来表示字符.而诸如下面这样的语句就会报错. $quer ...

  2. ECshop网点程序优化-自动生成类目页Keywords、Desciption Meta

    ECshop支持针对每个新建的类目自定义Keywords.Description Meta信息,好处就不用说了,帮助SEO或者让浏览者了解这是什么页面,但如果有几百个类目的时候,人工去写这些类目又有点 ...

  3. 笨方法学python 33课

    今天Eiffel看到了第33章,任务是把一个while循环改成一个函数. 我在把while循环改成函数上很顺利,但是不知道怎么写python的主函数,在参数的调用上也出现了问题. 通过查资料,发现py ...

  4. Django数据库配置

    将Django使用数据库由默认的sqlite3更改为mysql: 1.安装mysql驱动程序 MySQLdb(mysql-python) mysqlclient Connector/Python Py ...

  5. swift-UILabel

    // Mark: 2. 创建label private func creatLabel(title: NSString)->UILabel{ /// 创建label let titleL = U ...

  6. 认识HTML

    基本框架: 1 <html> 2 <head> 3 <title>This Is Title</title> 4 </head> 5 6 & ...

  7. Python中异常(Exception)的总结

    Python中的异常处理 异常处理的语句结构 try: <statements> #运行try语句块,并试图捕获异常 except <name1>: <statement ...

  8. Citect:How do I translate Citect error messages?

    http://www.opcsupport.com/link/portal/4164/4590/ArticleFolder/51/Citect   To decode the error messag ...

  9. hdu 4815 Little Tiger vs. Deep Monkey

    概率dp,有点像背包的做法: dp[i][j]代表前i个数组成的j数的概率为多少 #include<cstdio> #include<cstring> #define maxn ...

  10. LCA问题的ST,tarjan离线算法解法

    一  ST算法与LCA 介绍 第一次算法笔记这样的东西,以前学算法只是笔上画画写写,理解了下,刷几道题,其实都没深入理解,以后遇到新的算法要把自己的理解想法写下来,方便日后回顾嘛>=< R ...