diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-06-27 16:45:32 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-06-27 16:46:03 +0200 |
commit | f28b55b55155687b3122a105ea0ed53d20eee5ff (patch) | |
tree | a4e795d8511fdd86a417ddb9f9c980841ec2f9bb /scene | |
parent | 92f75046378a63b46946e8acbd7c224f027ebfa5 (diff) |
Increase the default ReflectionProbe extents to Vector3(10, 10, 10)
On top of having a more realistic size out of the box, this matches
the default VoxelGI extents for better usability.
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/reflection_probe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/reflection_probe.h b/scene/3d/reflection_probe.h index 15c2da3ae0..4bf20c89c5 100644 --- a/scene/3d/reflection_probe.h +++ b/scene/3d/reflection_probe.h @@ -55,7 +55,7 @@ private: RID probe; float intensity = 1.0; float max_distance = 0.0; - Vector3 extents = Vector3(1, 1, 1); + Vector3 extents = Vector3(10, 10, 10); Vector3 origin_offset = Vector3(0, 0, 0); bool box_projection = false; bool enable_shadows = false; |