Unity3D使用Shader实现腐蚀消失

作者:星空不语 时间:2022-01-07 20:57:59 

本片shader实现的效果是模型腐蚀消失,且腐蚀的边缘大小可以调、颜色可调。效果图如下:

Unity3D使用Shader实现腐蚀消失

设置面板如下:

Unity3D使用Shader实现腐蚀消失

使用时需要给ClipMask参数给一张噪点图,设置合适的cliplinesize和cliplinecolor,然后调整clipalpha就可以了。

原理是通过获取噪点图上对应的颜色,转换成灰度,然后用灰度与clipalpha对比,如果大于则被剪裁掉。

shader实现如下:


Shader "XM/CorrosionEffect" {
Properties {
_Color ("Color", Color) = (1,1,1,1)
_MainTex ("Albedo (RGB)", 2D) = "white" {}
_Glossiness ("Smoothness", Range(0,1)) = 0.5
_Metallic ("Metallic", Range(0,1)) = 0.0
_ClipMaskTex ("Clip Mask", 2D) = "white" {}
_ClipGray ("Clip Alpha", Range(0.0,1.0)) = 0.0
_ClipLineSize ("Clip Line Size", Range(0,1)) = 0.0
_ClipLineColor("Clip Line Color", Color) = (1,1,1,1)
}
SubShader {
Tags { "RenderType"="Opaque" }
LOD 200

CGPROGRAM
// Physically based Standard lighting model, and enable shadows on all light types
#pragma surface surf Standard fullforwardshadows

// Use shader model 3.0 target, to get nicer looking lighting
#pragma target 3.0

sampler2D _MainTex;
sampler2D _ClipMaskTex;

struct Input {
 float2 uv_MainTex;
};

half _Glossiness;
half _Metallic;
fixed4 _Color;
fixed _ClipGray;
fixed _ClipLineSize;
fixed4 _ClipLineColor;

void surf (Input IN, inout SurfaceOutputStandard o) {
 fixed4 m = tex2D (_ClipMaskTex, IN.uv_MainTex);
 fixed gray = Luminance(m.rgb);
 if(gray >= _ClipGray)
 {
 clip(-1);
 }

fixed4 c;
 if(gray >= _ClipGray - _ClipLineSize)
 {
 c = _ClipLineColor;
 }
 else
 {
 // Albedo comes from a texture tinted by color
 c = tex2D (_MainTex, IN.uv_MainTex) * _Color;
 }

o.Albedo = c.rgb;

// Metallic and smoothness come from slider variables
 o.Metallic = _Metallic;
 o.Smoothness = _Glossiness;
 o.Alpha = c.a;
}
ENDCG
}
FallBack "Diffuse"
}

来源:https://blog.csdn.net/u012741077/article/details/53469215

标签:Unity3D,Shader,腐蚀消失
0
投稿

猜你喜欢

  • Android Compose 属性动画使用探索详解

    2022-08-07 11:06:57
  • Java中二维数组的正确使用方法介绍

    2023-11-19 16:14:18
  • Android 定时器实现图片的变换

    2021-05-28 00:33:13
  • Java中lambda表达式实现aop切面功能

    2022-12-02 09:44:59
  • C#与PLC通讯的实现代码

    2021-10-29 13:34:39
  • Android studio 出现错误Run with --stacktrace option to get the stack trace. Run with --info or --debu

    2022-10-25 09:43:15
  • Spring Boot整合Lombok的方法详解

    2023-11-22 09:06:21
  • idea手动刷新git分支的详细教程

    2022-04-05 11:53:43
  • 详解SpringBoot通用配置文件(不定时更新)

    2022-12-01 09:07:04
  • Android使用phonegap从相册里面获取照片(代码分享)

    2023-07-24 18:53:03
  • 解析Silverlight调用WCF/Rest异常的解决方法

    2021-08-19 07:41:37
  • SpringCloud Feign 服务调用的实现

    2023-09-18 11:07:35
  • 1秒钟实现Springboot 替换/写入 word文档里面的文字、图片功能

    2022-05-08 18:35:48
  • C#实现关闭子窗口而不释放子窗口对象的方法

    2022-09-11 12:41:02
  • c# 对cookies(增、删、改、查)的操作方法

    2023-08-10 06:24:48
  • SpringBoot如何通过Feign调用传递Header中参数

    2023-11-24 21:39:29
  • SpringBoot万字爆肝高级配置

    2022-09-17 06:34:08
  • Spring依赖注入的三种方式小结

    2022-08-09 15:56:41
  • Android 调用系统照相机拍照和录像

    2023-10-30 05:40:35
  • struts2中实现多个文件同时上传代码

    2023-05-11 16:24:39
  • asp之家 软件编程 m.aspxhome.com