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>2021-09-27 10:34:17 +0300
committerJacques Lucke <jacques@blender.org>2021-09-27 10:34:17 +0300
commitfe49904646ced298685dd1e24819acd53d9f2619 (patch)
treec666a2d436e91c176ea0852c370977e74ad55333 /source/blender/nodes/function
parentddb0dc252777d3af1e80d6767b0e35f326d34df6 (diff)
Fix: wrong socket shape in Vector input node
Diffstat (limited to 'source/blender/nodes/function')
-rw-r--r--source/blender/nodes/function/nodes/node_fn_input_vector.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/nodes/function/nodes/node_fn_input_vector.cc b/source/blender/nodes/function/nodes/node_fn_input_vector.cc
index 387689b3d1e..9548df7b423 100644
--- a/source/blender/nodes/function/nodes/node_fn_input_vector.cc
+++ b/source/blender/nodes/function/nodes/node_fn_input_vector.cc
@@ -25,7 +25,6 @@ namespace blender::nodes {
static void fn_node_input_vector_declare(NodeDeclarationBuilder &b)
{
- b.is_function_node();
b.add_output<decl::Vector>("Vector");
};