摘要:
【Vertex color blending & UV tiling】1、GemotryData控件用于代码顶点数据,如网格中的Vertex Color(下左图),UV Coord(下右图)。 2、右击每一个控制,会弹出帮助选项,以及输入Comment的选项。 3、Shader Forge中... 阅读全文
摘要:
【Create a Basic Shader in Shader Forge】1、打开ShaderForge。Window-> Shader Forge。(打开速度较慢)2、通过NewShader按钮创建一个新Shader。 3、左上角Compile Shader会显示当前Shader的状态。 ... 阅读全文
摘要:
【Radial Blur】 核心代码如下: 1 v2f vert (appdata_img v) 2 { 3 v2f o; 4 o.pos = mul(UNITY_MATRIX_MVP, v.vertex); 5 o.uv = v.texcoord.xy; 6... 阅读全文
摘要:
【IronPython】 IronPython isan implementation of the Python programming language written by the CLR team at Microsoft.IronPython runs on the Microsoft®... 阅读全文
摘要:
【SpinBlur - 旋转模糊】 Using the Spin Blur effect, you can rotate and blur the image around one or more points. The spin blur is a radial blur measured in... 阅读全文
摘要:
【IrisBlur - 虹膜模糊】 IrisBlur模拟人眼的虹膜,本质上是一个控制程度更高的FieldBlur,在FieldBlur的基础上暴露了更多的参数。 ChooseFilter>Blur Gallery>Iris Blur. The default Iris blur pin is ... 阅读全文
摘要:
【牛X的FieldBlur】 Use Field Blur to build a gradient of blurs, by defining multiple blur points with different amounts of blur. Add multiple pins to the... 阅读全文
摘要:
【高斯模糊】 高斯模糊(英语:Gaussian Blur),也叫高斯平滑。 高斯模糊(Gaussian Blur)是美国Adobe图像软件公司开发的一个图像处理软件:Adobe Photoshop(系列)中的一个滤镜,具体的位置在:滤镜—模糊——高斯模糊! 高斯模糊的原理中,它是根据高斯曲... 阅读全文