Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc b/source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc
index e6a7201b855..4dbe10f3982 100644
--- a/source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc
+++ b/source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc
@@ -51,8 +51,8 @@ class MF_SeparateXYZ : public blender::fn::MultiFunction {
blender::fn::MFSignatureBuilder signature = this->get_builder("Separate XYZ");
signature.single_input<blender::float3>("XYZ");
signature.single_output<float>("X");
- signature.single_output<float>("y");
- signature.single_output<float>("z");
+ signature.single_output<float>("Y");
+ signature.single_output<float>("Z");
}
void call(blender::IndexMask mask,