mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #113599 from allenwp/fix-glow-bleed-threshold-error-value
Change `environment_get_glow_hdr_bleed_threshold` error handling
This commit is contained in:
commit
ed02f9e03d
1 changed files with 1 additions and 1 deletions
|
|
@ -615,7 +615,7 @@ RS::EnvironmentGlowBlendMode RendererEnvironmentStorage::environment_get_glow_bl
|
||||||
|
|
||||||
float RendererEnvironmentStorage::environment_get_glow_hdr_bleed_threshold(RID p_env) const {
|
float RendererEnvironmentStorage::environment_get_glow_hdr_bleed_threshold(RID p_env) const {
|
||||||
Environment *env = environment_owner.get_or_null(p_env);
|
Environment *env = environment_owner.get_or_null(p_env);
|
||||||
ERR_FAIL_NULL_V(env, 0.0);
|
ERR_FAIL_NULL_V(env, 1.0);
|
||||||
return env->glow_hdr_bleed_threshold;
|
return env->glow_hdr_bleed_threshold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue