From 070010e203f6cf9ac8fe30c8b60a5394df98e730 Mon Sep 17 00:00:00 2001 From: Fabian Schempp Date: Sun, 14 Mar 2021 23:11:36 +0100 Subject: Nodes: multi-input support for Attribute Remove node This patch adds multi-input support to the Attribute Remove node. Reviewed By: Hans Goudey Differential Revision: https://developer.blender.org/D10698 --- source/blender/nodes/NOD_geometry_exec.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/nodes/NOD_geometry_exec.hh') diff --git a/source/blender/nodes/NOD_geometry_exec.hh b/source/blender/nodes/NOD_geometry_exec.hh index 5b123e68fe2..5d1a217db9b 100644 --- a/source/blender/nodes/NOD_geometry_exec.hh +++ b/source/blender/nodes/NOD_geometry_exec.hh @@ -129,7 +129,7 @@ class GeoNodeExecParams { if (!input_values_.contains(sub_identifier)) { break; } - values.append(input_values_.extract(sub_identifier)); + values.append(input_values_.extract(sub_identifier)); index++; } return values; -- cgit v1.2.3