调整渲染参数

- tmin 从 0.1 改为 0.01(相机近平面)
- MaxSteps 从 128 增加到 500
- DensityScale 从 0.01 调整到 0.05
- 相机位置调整到 z=-800
This commit is contained in:
2026-03-11 22:34:55 +08:00
parent 412334cf74
commit f3fd9f813e
2 changed files with 5 additions and 5 deletions

View File

@@ -112,7 +112,7 @@ float4 MainPS(PSInput input) : SV_TARGET
{
float3 rayDir = normalize(input.worldPos - _CameraPos);
float tmin = 0.1;
float tmin = 0.01;
float tmax = 1000.0;
NanoVolume volume;