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:
authorJacques Lucke <jacques@blender.org>2020-07-07 21:27:34 +0300
committerJacques Lucke <jacques@blender.org>2020-07-07 21:27:34 +0300
commit871310921229668efeac8638097efa99c2353a6b (patch)
tree3c55d22dc82a4dbedb1736a7de431039bc52818f /source/blender/nodes
parent902ee4d13ce8cdaee869ecdb1a6925be940d0cd7 (diff)
Cleanup: fix typo
Diffstat (limited to 'source/blender/nodes')
-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,