5

我有一个灰度着色器,可以在应用于材质时工作。我想将它应用于相机渲染的内容。

我找到了一些关于 void OnRenderImage (RenderTexture source, RenderTexture destination) 的教程

但我无法让它和我的一起工作。

着色器:

Shader "Custom/Grayscale" {

SubShader {
    Pass{

        CGPROGRAM

        #pragma exclude_renderers gles
        #pragma fragment frag

        #include "UnityCG.cginc"

        uniform sampler2D _MainTex;

        fixed4 frag(v2f_img i) : COLOR{
            fixed4 currentPixel = tex2D(_MainTex, i.uv);

            fixed grayscale = Luminance(currentPixel.rgb);
            fixed4 output = currentPixel;

            output.rgb = grayscale;
            output.a = currentPixel.a;

            //output.rgb = 0;

            return output;
        }

        ENDCG
    }

}

FallBack "VertexLit"
}

以及附加到相机的脚本:

using UnityEngine;
using System.Collections;

public class Grayscale : ImageEffectBase {

void OnRenderImage (RenderTexture source, RenderTexture destination) {
    Graphics.Blit (source, destination, material);
}
}

有什么建议么 ?非常感谢 !

4

1 回答 1

3

您必须添加一个顶点着色器,因为没有默认的顶点着色器。这只是从顶点缓冲区复制数据。

#pragma vertex vert
v2f_img vert (appdata_base v) {
    v2f_img o;
    o.pos = mul(UNITY_MATRIX_MVP, v.vertex);
    o.uv = v.texcoord;
    return o;
}

而且你还需要ZTest AlwaysPass {.

这显然是一个错误,但 Unity3d 支持人员表示他们以这种方式保留它(使用默认 ZTest)而不是改变着色器行为。我希望他们会重新考虑这一点,并使其ZTest Always默认用于Graphics.Blit.

于 2012-10-26T12:37:56.130 回答