diff options
| author | yum <yum.food.vr@gmail.com> | 2024-10-09 08:06:53 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-10-09 08:25:45 -0700 |
| commit | e193c86c869b84dfaaa26465c0e6fb923a27631c (patch) | |
| tree | 025d7d94bac4abcec8d4479dbc95947216bda481 /tooner_outline_pass.cginc | |
| parent | c22c911ea360b0f9bdd9ee6ccd735fbcfe3bfad6 (diff) | |
Rework step size / density
Step size is now derived from density. Step size is reimagined as a
"quality" multiplier.
Diffstat (limited to 'tooner_outline_pass.cginc')
| -rw-r--r-- | tooner_outline_pass.cginc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tooner_outline_pass.cginc b/tooner_outline_pass.cginc index 960039e..9c10999 100644 --- a/tooner_outline_pass.cginc +++ b/tooner_outline_pass.cginc @@ -316,7 +316,8 @@ fixed4 frag (v2f i) : SV_Target vertex_light_color, albedo, i.worldPos, i.normal, /*metallic=*/0, /*smoothness=*/0, - i.uv0, ao, /*enable_direct=*/false, i); + i.uv0, ao, /*enable_direct=*/false, + /*diffuse_contrib=*/0, i); result += albedo * _Outline_Emission_Strength; #if defined(_GIMMICK_AL_CHROMA_00) |
