You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Reverts the default value of Environment.glow_hdr_threshold from 0.0 back to 1.0 to restore the expected glow appearance in existing projects. The default was inadvertently changed from 1.0 to 0.0 in PR #110077, which caused glow effects to render dramatically different across all rendering methods (Forward+, Mobile, and GL Compatibility). This broke backward compatibility with existing projects like the Kenney 3D Platformer starter kit. Changed files: - scene/resources/environment.h - servers/rendering/storage/environment_storage.h - drivers/gles3/effects/glow.h - drivers/gles3/rasterizer_scene_gles3.cpp - doc/classes/Environment.xml Setting the value back to 1.0 aligns with documented recommendations and restores visual consistency. Fixes #112469