From 1beaec46b8e3fbb2bc6755ebd363637be6f540fe Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 4 Jan 2023 13:12:11 +0100 Subject: [PATCH] Fix: implicit field socket ignored Follow up to rB86a471efe71a84d807e682445fd73a247f196612. --- source/blender/nodes/NOD_node_declaration.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/nodes/NOD_node_declaration.hh b/source/blender/nodes/NOD_node_declaration.hh index c221c64442d..8a7606df777 100644 --- a/source/blender/nodes/NOD_node_declaration.hh +++ b/source/blender/nodes/NOD_node_declaration.hh @@ -349,8 +349,8 @@ class SocketDeclarationBuilder : public BaseSocketDeclarationBuilder { /** The input is evaluated on a subset of the geometry inputs. */ Self &implicit_field_on(ImplicitInputValueFn fn, const Span input_indices) { - this->implicit_field(fn); this->field_on(input_indices); + this->implicit_field(fn); return *(Self *)this; }