diff options
| author | yum <yum.food.vr@gmail.com> | 2025-06-05 19:42:36 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-06-05 19:42:36 -0700 |
| commit | 8b7ae8db808d76ddea503f94e142c7d37c1b43d3 (patch) | |
| tree | 9c60f09943b314d47bd5f8df732465831d5a566d /globals.cginc | |
| parent | 50b0b6c8b292e966a43fe56c6e0bf0a20c1d5b62 (diff) | |
more work on fog & c30
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/globals.cginc b/globals.cginc index 2768202..e1cc6f1 100644 --- a/globals.cginc +++ b/globals.cginc @@ -10,6 +10,7 @@ float4 _CameraDepthTexture_TexelSize; SamplerState point_repeat_s;
SamplerState linear_repeat_s;
+SamplerState bilinear_repeat_s;
SamplerState linear_clamp_s;
SamplerState trilinear_repeat_s;
@@ -549,9 +550,8 @@ float3 _Raymarched_Fog_Velocity; float _Raymarched_Fog_Density_Exponent;
#endif
#if defined(_RAYMARCHED_FOG_HEIGHT_DENSITY)
-float _Raymarched_Fog_Height_Density_Min;
-float _Raymarched_Fog_Height_Density_Max;
-float _Raymarched_Fog_Height_Density_Power;
+float _Raymarched_Fog_Height_Density_Start;
+float _Raymarched_Fog_Height_Density_Half_Life;
#endif
#endif // _RAYMARCHED_FOG
|
