changed defaults for this branch only

fixed iris buffer thing
added focus laser color (due to budder DEMANDING and threatening my family /s)
oh yeah, enabled fog!
This commit is contained in:
WoMspace
2023-01-18 17:36:21 +00:00
parent 18729345ca
commit 52c9594e0c
9 changed files with 34 additions and 20 deletions

View File

@ -126,8 +126,8 @@ void main() {
jitter.x *= DOF_ANAMORPHIC_RATIO;
float focus = DOF_JITTER_FOCUS;
float distanceToFocus = gl_Position.z - focus;
gl_Position.xy += (jitter * JITTER_STRENGTH) * distanceToFocus * 1e-2;
float focusMul = gl_Position.z - DOF_JITTER_FOCUS;
gl_Position.xy += (jitter * JITTER_STRENGTH) * focusMul * 1e-2;
#endif
}