[Bf-blender-cvs] [87131092122] master: Cleanup: fix typo

Jacques Lucke noreply at git.blender.org
Tue Jul 7 20:29:50 CEST 2020


Commit: 871310921229668efeac8638097efa99c2353a6b
Author: Jacques Lucke
Date:   Tue Jul 7 20:27:34 2020 +0200
Branches: master
https://developer.blender.org/rB871310921229668efeac8638097efa99c2353a6b

Cleanup: fix typo

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

M	source/blender/nodes/shader/nodes/node_shader_sepcombXYZ.cc

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

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,



More information about the Bf-blender-cvs mailing list