Shaders: Change default Blackbody node temperature to 6500K

Match the default value in Light Properties.

Pull Request: https://projects.blender.org/blender/blender/pulls/143504
This commit is contained in:
Daniel Salazar
2025-07-29 17:49:05 +02:00
committed by Brecht Van Lommel
parent 6487395fa5
commit 750d0df4e7

View File

@@ -15,7 +15,7 @@ static void node_declare(NodeDeclarationBuilder &b)
{
b.is_function_node();
b.add_input<decl::Float>("Temperature")
.default_value(1500.0f)
.default_value(6500.0f)
.min(800.0f)
.max(12000.0f)
.subtype(PROP_COLOR_TEMPERATURE);