欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

unity shader实现玻璃折射效果

时间:2022-05-31 09:23:48|栏目:.NET代码|点击:

本文实例为大家分享了unity shader实现玻璃折射的具体代码,供大家参考,具体内容如下

Shader "Unlit/render_reflect"
{
 Properties
 {
 _MainTex ("Texture", 2D) = "white" {}
 }
 SubShader
 {
 Tags {"Queue" = "Transparent" "RenderType"="Opaque" }
 LOD 100
 GrabPass{"_ScreenTex"}
 Pass
 {
  CGPROGRAM
  #pragma vertex vert
  #pragma fragment frag
  // make fog work
  #pragma multi_compile_fog
  
  #include "UnityCG.cginc"
#include "Lighting.cginc"
#include "AutoLight.cginc"
  struct appdata
  {
  float4 vertex : POSITION;
  float2 uv : TEXCOORD0;
  };

  struct v2f
  {
  float4 uv : TEXCOORD0;
  float2 uv2 : TEXCOORD1;
  float4 vertex : SV_POSITION;
  };

  sampler2D _MainTex;
  float4 _MainTex_ST;
  sampler2D _ScreenTex;
  v2f vert (appdata v)
  {
  v2f o;
  o.vertex = UnityObjectToClipPos(v.vertex);
  o.uv2 = TRANSFORM_TEX(v.uv, _MainTex);
  o.uv = ComputeGrabScreenPos(o.vertex);
  //o.uv.x = 1 - o.uv.x;
  return o;
  }
  
  fixed4 frag (v2f i) : SV_Target
  {
  // sample the texture
  i.uv.xy += float2(0.1,0.1);
  fixed4 fra = tex2D(_ScreenTex, i.uv.xy/i.uv.w);
  fixed4 fle = tex2D(_MainTex, i.uv2);
  // apply fog
  return lerp(fra, fle, 0.2);
  }
  ENDCG
 }
 }
}

上一篇:C# 6.0的属性(Property)的语法与初始值详解

栏    目:.NET代码

下一篇:C#微信开发之发送模板消息

本文标题:unity shader实现玻璃折射效果

本文地址:http://www.codeinn.net/misctech/203293.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有