边缘光shader总结

边缘光shader

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

Shader "CM/RimLight" {

    Properties

    {

        _Color ("Main Color", Color) = (1,1,1,1)

        _MainTex ("Base (RGB)", 2D) = "white" {}

        _IlluminPower("Illumin Power", Range(0, 2)) = 1

        _RimColor ("Rim Color", Color) = (1, 1, 1, 1)

        _RimPower ("Rim Power", Float) = 0.7

    }

    SubShader

    {

        Pass

        {

            Lighting Off

            CGPROGRAM

             

            #pragma vertex vert

            #pragma fragment frag

            #include "UnityCG.cginc"

 

            uniform sampler2D _MainTex;

            uniform fixed4 _Color;

            uniform float4 _MainTex_ST;

            float _IlluminPower;

            uniform fixed4 _RimColor;

            float _RimPower;

             

            struct appdata {

                float4 vertex : POSITION;

                float3 normal : NORMAL;

                float2 texcoord : TEXCOORD0;

            };

 

            struct v2f {

                float4 pos : SV_POSITION;

                float2 uv : TEXCOORD0;

                fixed3 color : COLOR;

            };

 

            v2f vert (appdata_base v)

            {

                v2f o;

                o.pos = mul (UNITY_MATRIX_MVP, v.vertex);

 

                float3 viewDir = normalize(ObjSpaceViewDir(v.vertex));

                float dotProduct = 1 - dot(v.normal, viewDir);

                

                o.color = _RimColor * pow(dotProduct, _RimPower);//smoothstep(1 - _RimPower, 1.0, dotProduct);

 

                o.uv = TRANSFORM_TEX(v.texcoord, _MainTex);

                return o;

            }

 

 

            fixed4 frag(v2f i) : COLOR

            {

                fixed4 texcol = tex2D(_MainTex, i.uv);

                texcol.rgb = texcol.rgb  * _Color.rgb * _IlluminPower + i.color;

                return texcol;

            }

             

            ENDCG

        }

    }

}

 

  

冰冻效果

 

二、使用cap texture:

 

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

Shader "CM/Rimlight2" {

    Properties

    {

        _Color ("Main Color", Color) = (1,1,1,1)

        _MainTex ("Base (RGB)", 2D) = "white" {}

        _IlluminPower("Illumin Power", Range(0, 2)) = 1

 

        _CapTex("Cap Tex (RGB)", 2D) = "white" {}

        _CapColor("Cap Color", Color) = (1,1,1,1)

        _CapIntensity("Cap Intensity", Range(0,3)) = 0

    }

    SubShader

    {

        Pass

        {

            Lighting Off

            CGPROGRAM

             

            #pragma vertex vert

            #pragma fragment frag

            #include "UnityCG.cginc"

 

            uniform sampler2D _MainTex;

            uniform fixed4 _Color;

            uniform float4 _MainTex_ST;

            float _IlluminPower;

 

             

            float _CapIntensity;

            uniform sampler2D _CapTex;

            fixed4 _CapColor;

                 

             

            struct appdata {

                float4 vertex : POSITION;

                float3 normal : NORMAL;

                float2 texcoord : TEXCOORD0;

            };

 

            struct v2f {

                float4 pos : SV_POSITION;

                float2 uv : TEXCOORD0;

                fixed2 cap : COLOR;

            };

 

            v2f vert (appdata_base v)

            {

                v2f o;

                o.pos = mul (UNITY_MATRIX_MVP, v.vertex);

 

                half2 capCoord;

                capCoord.x = dot(UNITY_MATRIX_IT_MV[0].xyz,v.normal);

                capCoord.y = dot(UNITY_MATRIX_IT_MV[1].xyz,v.normal);

                o.cap = capCoord * 0.5 + 0.5;

 

                o.uv = TRANSFORM_TEX(v.texcoord, _MainTex);

                return o;

            }

 

 

            fixed4 frag(v2f i) : COLOR

            {

                fixed4 texcol = tex2D(_MainTex, i.uv);

                fixed4 cap = tex2D(_CapTex, i.cap);

                 

                texcol.rgb = texcol.rgb  * _Color.rgb * _IlluminPower + cap.rgb * _CapIntensity * _CapColor;

                return texcol;

            }

             

            ENDCG

        }

    }

}

 

 

 三、在光照射方向上存在边缘光

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

Shader "CM/Rimlight3" {

    Properties

    {

        _Color ("Main Color", Color) = (1,1,1,1)

        _MainTex ("Base (RGB)", 2D) = "white" {}

        _IlluminPower("Illumin Power", Range(0, 2)) = 1

        _RimColor ("Rim Color", Color) = (0, 0.8, 0.8, 1)

        _RimPower ("Rim Power", Float) = 0.7

    }

    SubShader

    {

        Pass

        {

            Lighting Off

            CGPROGRAM

             

            #pragma vertex vert

            #pragma fragment frag

            #include "UnityCG.cginc"

 

            uniform sampler2D _MainTex;

            uniform fixed4 _Color;

            uniform float4 _MainTex_ST;

            float _IlluminPower;

            uniform fixed4 _RimColor;

            float _RimPower;

             

            struct appdata {

                float4 vertex : POSITION;

                float3 normal : NORMAL;

                float2 texcoord : TEXCOORD0;

            };

 

            struct v2f {

                float4 pos : SV_POSITION;

                float2 uv : TEXCOORD0;

                fixed3 color : COLOR;

            };

 

            v2f vert (appdata_base v)

            {

                v2f o;

                o.pos = mul (UNITY_MATRIX_MVP, v.vertex);

 

                float3 viewDir = normalize(ObjSpaceViewDir(v.vertex));

                float dotRim = 1 - dot(v.normal, viewDir);

                float3 lightDir = normalize(ObjSpaceLightDir(v.vertex));

                float dotDiff = dot(v.normal, lightDir);

                 

                o.color = _RimColor * pow(dotRim, _RimPower) * dotDiff;

 

                o.uv = TRANSFORM_TEX(v.texcoord, _MainTex);

                return o;

            }

 

 

            fixed4 frag(v2f i) : COLOR

            {

                fixed4 texcol = tex2D(_MainTex, i.uv);

                texcol.rgb = texcol.rgb  * _Color.rgb * _IlluminPower + i.color;

                return texcol;

            }

             

            ENDCG

        }

    }

}

  

 四、在光照射方向上产生边缘光  ----------------- 使用matcap 贴图  (shader 依然用上面的rimlight2), 只需要替换matcap贴图 即可:

### 回答1: 好的,下面是一个简单的用Unity Shader实现边缘效果的例子。 首先,我们需要一个称为"RenderTexture"的工具来在屏幕上渲染场景。这个RenderTexture将会成为我们在Shader中计算边缘的基础。 在这个Shader中,我们需要做以下几个步骤: 1. 将场景渲染到RenderTexture中。 2. 对RenderTexture进行处理,找到场景中的边缘,并将边缘标记为白色。 3. 对处理后的RenderTexture进行模糊处理,以产生发效果。 4. 将模糊后的RenderTexture和原始场景图像混合在一起,产生最终的边缘效果。 下面是一个简单的Shader代码示例: ``` Shader "Custom/EdgeGlow" { Properties { _MainTex ("Texture", 2D) = "white" {} _EdgeColor ("Edge Color", Color) = (1,1,1,1) _EdgeWidth ("Edge Width", Range(0, 0.1)) = 0.01 _BlurRadius ("Blur Radius", Range(0, 10)) = 2 } SubShader { Tags { "RenderType"="Opaque" } Pass { CGPROGRAM #pragma vertex vert #pragma fragment frag #include "UnityCG.cginc" struct appdata { float4 vertex : POSITION; float2 uv : TEXCOORD0; }; struct v2f { float2 uv : TEXCOORD0; float4 vertex : SV_POSITION; }; sampler2D _MainTex; float4 _MainTex_ST; float4 _EdgeColor; float _EdgeWidth; float _BlurRadius; v2f vert (appdata v) { v2f o; o.vertex = UnityObjectToClipPos(v.vertex); o.uv = TRANSFORM_TEX(v.uv, _MainTex); return o; } fixed4 frag (v2f i) : SV_Target { // Step 1: Render scene to a RenderTexture float4 scene = tex2D(_MainTex, i.uv); // Step 2: Find edges and mark them white float4 edge = (4 * scene.rgba - tex2D(_MainTex, i.uv + float2(0, 1) * _MainTex_ST.y).rgba - tex2D(_MainTex, i.uv - float2(0, 1) * _MainTex_ST.y).rgba - tex2D(_MainTex, i.uv + float2(1, 0) * _MainTex_ST.x).rgba - tex2D(_MainTex, i.uv - float2(1, 0) * _MainTex_ST.x).rgba); edge = max(edge, 0); edge = step(_EdgeWidth, edge.r); // Step 3: Apply Gaussian blur to edges for (int i = -_BlurRadius; i <= _BlurRadius; i++) { for (int j = -_BlurRadius; j <= _BlurRadius; j++) { float2 offset = float2(i, j) * ### 回答2: 使用Unity Shader编写边缘效果可以通过以下几个步骤来实现: 1. 为对象创建一个新的材质,并在着色器选项中选择"Custom/Edge Glow"。 2. 编写一个新的边缘Shader,并将其与上一步骤中创建的材质相关联。 3. 在着色器中添加顶点和片段着色器函数。 4. 顶点着色器中,使用传入的模型视图矩阵和投影矩阵将顶点位置转换为屏幕空间坐标。 5. 片段着色器中,将屏幕空间坐标作为输入。 6. 在片段着色器中,使用采样函数获取当前像素的颜色。 7. 使用一个for循环,遍历像素的邻居,比较颜色差异,如果颜色差异超过一个阈值,则表示该像素位于边缘。 8. 将边缘像素的颜色设置为发颜色,将非边缘像素的颜色设置为原始颜色。 9. 在Unity中将该材质应用到需要应用该边缘效果的对象上。 以上是一种实现边缘效果的例子,可以根据具体需求适应更多的应用场景和效果。编写Shader需要一定的Shader编程经验,建议在学习和实践的过程中参考Unity官方文档和其他相关资源。 ### 回答3: 要使用Unity Shader编写一段边缘效果,我们可以参考一种基本的方法。首先,我们需要两个Pass来实现效果:一个Pass用于将发部分高亮,另一个Pass使用轮廓检测算法将边缘区域描绘出来。 首先,在顶点着色器中,我们需要将顶点位置从模型空间转换为剪辑空间,通过将顶点坐标乘以Unity内置变量`UNITY_MATRIX_MVP`实现。然后,我们可以将变换后的位置传递给片段着色器。 在片段着色器中,我们需要进行两个Pass。在第一个Pass中,通过计算法线和视线的角度余弦值,将发部分高亮。我们可以使用照信息和噪声函数来模拟高亮效果。最后,我们将高亮部分的颜色与原始颜色进行混合。 在第二个Pass中,我们使用轮廓检测算法来描绘边缘。我们可以通过计算像素的法线差异来确定边缘区域。如果法线差异大于阈值,则将像素颜色设置为边缘颜色,否则保持原始颜色。 边缘效果的实现需要额外的几何信息,例如模型的法线信息。因此,在Unity中将需要在材质中导入法线贴图,并在Shader中进行采样。 总结起来,要使用Unity Shader编写一段边缘效果,我们需要进行两个Pass:一个用于高亮发部分,另一个用于描绘边缘部分。通过计算角度余弦和法线差异,我们可以实现边缘效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值