Fixed some TODOs, removed old comments

This commit is contained in:
2025-01-11 13:25:24 +01:00
parent 9afd242121
commit 4971d693fd
3 changed files with 7 additions and 21 deletions

View File

@@ -28,7 +28,7 @@ const float MAX_SPEED = 14.0f;
// --------------------------- Raycasting Constants ---------------------------
const int SAMPLES_PER_PIXEL = 1;
const float alphaAcumLimit = 1.0f; // TODO: Idk what a good accumulation value is <--- This finally does something when using alpha in both places at least
const float alphaAcumLimit = 1.0f; // TODO: Atm, this does not work very intuitively, other parameters control transparency
const float minAllowedDensity = 0.001f;
const float stepSize = 0.02f;