这篇文章给大家介绍怎么在Unity3D中利用Shader实现一个扫描显示效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
枣强ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:13518219792(备注:SSL证书合作)期待与您的合作!
shader实现如下:
Shader "XM/ScanEffect2" { 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 _Clip("Clip", float) = 0 [KeywordEnum(None, Left, Up, Forward)]_Mode("Mode", Float) = 0 } SubShader { Tags { "RenderType"="Opaque" } LOD 200 CGPROGRAM // Physically based Standard lighting model, and enable shadows on all light types #pragma surface surf Standard fullforwardshadows vertex:vert // Use shader model 3.0 target, to get nicer looking lighting #pragma target 3.0 sampler2D _MainTex; struct Input { float2 uv_MainTex; float4 localPos; }; half _Glossiness; half _Metallic; fixed4 _Color; float _Clip; float _Mode; void vert(inout appdata_full i, out Input o) { UNITY_INITIALIZE_OUTPUT(Input, o); o.localPos = i.vertex; } void surf (Input i, inout SurfaceOutputStandard o) { if(i.localPos.x >= _Clip && _Mode == 1 || i.localPos.y >= _Clip && _Mode == 2|| i.localPos.z >= _Clip && _Mode == 3) { clip(-1); } // Albedo comes from a texture tinted by color fixed4 c = tex2D (_MainTex, i.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" }
关于怎么在Unity3D中利用Shader实现一个扫描显示效果就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
分享标题:怎么在Unity3D中利用Shader实现一个扫描显示效果
本文URL:https://www.cdcxhl.com/article0/jeoooo.html
成都网站建设公司_创新互联,为您提供ChatGPT、网站建设、静态网站、云服务器、Google、网站改版
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联