This commit is contained in:
in0finite 2021-05-02 23:04:24 +02:00
parent 077d34e79b
commit 4fe958d86b

View file

@ -19,7 +19,7 @@ sampler2D _NoiseTex;
fixed _Fade; fixed _Fade;
#endif #endif
half _NightMultiplier = 0.5; float _NightMultiplier = 0.5;
struct Input struct Input
{ {
@ -31,11 +31,12 @@ struct Input
}; };
void vert (inout appdata_full v) { void vert (inout appdata_full v) {
float4 c; float4 c;
c.rg = v.texcoord1.xy; c.rg = v.texcoord1.xy;
c.ba = v.texcoord2.xy; c.ba = v.texcoord2.xy;
c.a = _NightMultiplier; /*c.a = _NightMultiplier;*/
/*v.color = v.color * (1 - _NightMultiplier) + c * _NightMultiplier;*/ /*v.color = v.color * (1 - _NightMultiplier) + c * _NightMultiplier;*/