[Bf-blender-cvs] [95a792a6338] master: Fix wrong Cycles standalone exposure default value, should be 1

Brecht Van Lommel noreply at git.blender.org
Mon Dec 12 18:30:57 CET 2022


Commit: 95a792a6338b8c72cd186e029cdb6056303dc0bd
Author: Brecht Van Lommel
Date:   Mon Dec 12 17:52:51 2022 +0100
Branches: master
https://developer.blender.org/rB95a792a6338b8c72cd186e029cdb6056303dc0bd

Fix wrong Cycles standalone exposure default value, should be 1

===================================================================

M	intern/cycles/scene/film.cpp

===================================================================

diff --git a/intern/cycles/scene/film.cpp b/intern/cycles/scene/film.cpp
index cffa6acad59..67439b25868 100644
--- a/intern/cycles/scene/film.cpp
+++ b/intern/cycles/scene/film.cpp
@@ -88,7 +88,7 @@ NODE_DEFINE(Film)
 {
   NodeType *type = NodeType::add("film", create);
 
-  SOCKET_FLOAT(exposure, "Exposure", 0.8f);
+  SOCKET_FLOAT(exposure, "Exposure", 1.0f);
   SOCKET_FLOAT(pass_alpha_threshold, "Pass Alpha Threshold", 0.0f);
 
   static NodeEnum filter_enum;



More information about the Bf-blender-cvs mailing list