当前位置:   article > 正文

Shader Blend混合效果_opgl blend效果

opgl blend效果

测试场景:
一个Standard Shader的cube 放置在后面加上一个测试shader的球放置在前面

1、Blend SrcAlpha OneMinusSrcAlpha 正常模式(透明度混合)
在这里插入图片描述

2、Blend OneMinusDstColor One 柔和相加(soft Additive)
在这里插入图片描述

3、Blend DstColor Zero 正片叠底 (Multiply)相乘
在这里插入图片描述

4、Blend DstColor SrcColor 两倍相乘 (2X Multiply)

在这里插入图片描述

5、 变暗

在这里插入图片描述

6、变亮

在这里插入图片描述

7、Blend OneMinusDstColor One 滤色

在这里插入图片描述

8、Blend One One 线性变淡

在这里插入图片描述

测试代码

// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'

Shader "Wp/Blend"{
	Properties{
		_Color("Color", Color) = (1, 1, 1, 1)
		_MainTex("MainTex", 2D) = "White" {}
		_AlphaScale("AlphaScale", Range(0, 1)) = 1
	}

		SubShader{
			Tags{
				"Queue" = "Transparent"
				"Ignoreprojector" = "True"
				"RenderType" = "Transparent"
			}
			Pass{
				ZWrite off
							//1
				          //Blend SrcAlpha OneMinusSrcAlpha

							//2
						  //Blend OneMinusDstColor One

							//3
						  //Blend DstColor Zero

							//4
						  //Blend DstColor SrcColor

							//5
							/*BlendOp Min
							Blend One One*/

							//6
							/*BlendOp Max
							Blend One One*/


							//7
							 //Blend OneMinusDstColor One

								
							//8
							Blend One One

							CGPROGRAM

							#pragma vertex vert
							#pragma fragment frag

							fixed4 _Color;
							sampler2D _MainTex;
							float4 _MainTex_ST;
							float _AlphaScale;

							struct a2v {
								float4 pos : POSITION;
								float4 normal : NORMAL;
								float texcoord : TEXCOORD0;
							};

							struct v2f {
								float4 pos : SV_POSITION;
								float3 worldNormal : TEXCOORD0;
								float3 worldPos : TEXCOORD1;
								float4 uv : TEXCOORD2;
							};

							v2f vert(a2v v) {
								v2f o;
								o.pos = UnityObjectToClipPos(v.pos);
								return o;
							}

							fixed4 frag(v2f i) : SV_Target{
								return fixed4(_Color.rgb, _Color.a * _AlphaScale);
							}

							ENDCG
						}
		}
			Fallback "Diffuse"
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/96801
推荐阅读
相关标签
  

闽ICP备14008679号