Fix wrong Cycles standalone exposure default value, should be 1

This commit is contained in:
Brecht Van Lommel 2022-12-12 17:52:51 +01:00
parent f53bd17836
commit 95a792a633
1 changed files with 1 additions and 1 deletions

View File

@ -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;