summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-07 22:05:46 +0200
committerGitHub <noreply@github.com>2021-10-07 22:05:46 +0200
commit21b6aabb60b2a11a4fa30076eecb30883ecaf955 (patch)
tree66f932baaa18444276e38d39570a1ac2a28622ee /doc
parent82072c40103d8b827065a97c092bbb61ab13e9ec (diff)
parent0269d8e871e9df663af7ee90cb4156fb3a6288f8 (diff)
Merge pull request #53538 from Calinou/environment-ssr-fade-no-negative-values
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/Environment.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Environment.xml b/doc/classes/Environment.xml
index 2c4e5ea886..8231a90438 100644
--- a/doc/classes/Environment.xml
+++ b/doc/classes/Environment.xml
@@ -204,10 +204,10 @@
If [code]true[/code], screen-space reflections are enabled. Screen-space reflections are more accurate than reflections from [VoxelGI]s or [ReflectionProbe]s, but are slower and can't reflect surfaces occluded by others.
</member>
<member name="ss_reflections_fade_in" type="float" setter="set_ssr_fade_in" getter="get_ssr_fade_in" default="0.15">
- The fade-in distance for screen-space reflections. Affects the area from the reflected material to the screen-space reflection).
+ The fade-in distance for screen-space reflections. Affects the area from the reflected material to the screen-space reflection). Only positive values are valid (negative values will be clamped to [code]0.0[/code]).
</member>
<member name="ss_reflections_fade_out" type="float" setter="set_ssr_fade_out" getter="get_ssr_fade_out" default="2.0">
- The fade-out distance for screen-space reflections. Affects the area from the screen-space reflection to the "global" reflection.
+ The fade-out distance for screen-space reflections. Affects the area from the screen-space reflection to the "global" reflection. Only positive values are valid (negative values will be clamped to [code]0.0[/code]).
</member>
<member name="ss_reflections_max_steps" type="int" setter="set_ssr_max_steps" getter="get_ssr_max_steps" default="64">
The maximum number of steps for screen-space reflections. Higher values are slower.