5 years ago

Here is a nice peice of code to make a black and white shader!

just make a shader and paste this into it, but dont paster over the name or its top-most and bottom-most brackets.

EDIT : This is an ImageEffectShader.


Properties

{

_MainTex ("Texture", 2D) = "white" {}

}

SubShader

{

// No culling or depth

Cull Off ZWrite Off ZTest Always

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;

};

v2f vert (appdata v)

{

v2f o;

o.vertex = UnityObjectToClipPos(v.vertex);

o.uv = v.uv;

return o;

}

sampler2D _MainTex;

fixed4 frag (v2f i) : SV_Target

{

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

// just invert the colors

int sepia = col.r + col.g + col.b;

col.rgb = sepia;

// to change it to black, white, and gray, change the "col.rbg = sepia" to "col.rbg = col.r"

return col;

}

ENDCG

}

}



1 comment

Loading...

Next up

so images dont work? hmmm....

i swear ive seen this in my nightmares

After 7 long years, the wait is finally over. Chapters 1-4 of DELTARUNE are out now!

Celebrate the parallel story to Undertale by completing these quests.

The Button Effect – @Frycandle 's minimalist first-person puzzler inspired by The Witness, The Talos Principle and The Beginner's Guide, is coming to Steam! 

Play the demo and wishlist the game now: https://bit.ly/thebuttoneffect

i think the face swap worked

haha yes go brr huh yeah brr go brrrrrrrrrrrRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR

@Leeeeee is a Jolter to Watch and 3D Modeler with almost 4 years of experience! Follow @Leeeeee before the quest ends on June 10 and you'll get Coins!

working on the endings for Cam's Robotic House.