Change spaces to tabs

pull/87/head
Johannes Deml 2019-01-11 13:36:28 +01:00 committed by mob-sakai
parent cc6a74cc39
commit d00d64cb02
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ half SoftMask(float4 clipPos)
{
half2 view = clipPos.xy/_ScreenParams.xy;
#if UNITY_UV_STARTS_AT_TOP
view.y = 1.0 - view.y;
#endif
view.y = 1.0 - view.y;
#endif
half alpha =
lerp(1, tex2D(_SoftMaskTex, view).a, step(15, _Stencil))