Merge pull request #82415 from Calinou/reflectionprobe-fix-high-max-distance-rendering-2

Clamp ReflectionProbe Max Distance to 262,144 to fix rendering issues
This commit is contained in:
Rémi Verschelde 2023-10-26 08:57:35 +02:00
commit 79e9e201e8
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -68,8 +68,9 @@ Color ReflectionProbe::get_ambient_color() const {
}
void ReflectionProbe::set_max_distance(float p_distance) {
max_distance = p_distance;
RS::get_singleton()->reflection_probe_set_max_distance(probe, p_distance);
max_distance = CLAMP(p_distance, 0.0, 262'144.0);
// Reflection rendering breaks if distance exceeds 262,144 units (due to floating-point precision with the near plane being 0.01).
RS::get_singleton()->reflection_probe_set_max_distance(probe, max_distance);
}
float ReflectionProbe::get_max_distance() const {