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:
authorFabian Schempp <fabianschempp@googlemail.com>2021-03-15 01:11:36 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2021-03-15 01:11:36 +0300
commit070010e203f6cf9ac8fe30c8b60a5394df98e730 (patch)
tree75d78e6b5e7fea7aaca8a53a538998d4d2d9473f /source/blender/nodes/NOD_geometry_exec.hh
parenta01fb22f28df21acab103a5216591355b1dc85d7 (diff)
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
Diffstat (limited to 'source/blender/nodes/NOD_geometry_exec.hh')
-rw-r--r--source/blender/nodes/NOD_geometry_exec.hh2
1 files changed, 1 insertions, 1 deletions
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<T>(sub_identifier));
+ values.append(input_values_.extract<T, StringRef>(sub_identifier));
index++;
}
return values;