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-11-26 20:00:52 +0300
committerJacques Lucke <jacques@blender.org>2021-11-26 20:01:59 +0300
commit97465046c6bb43647a34d9fbbf33b784c0c2604d (patch)
treed1c597d5d63f86e1b0c030c04cc7b9057112a6d4 /source/blender/nodes/intern
parent92daff6ac2adb5bb8c42933063e42fa77823c61f (diff)
Geometry Nodes: add utility to set remaining outputs
Differential Revision: https://developer.blender.org/D13384
Diffstat (limited to 'source/blender/nodes/intern')
-rw-r--r--source/blender/nodes/intern/node_geometry_exec.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/nodes/intern/node_geometry_exec.cc b/source/blender/nodes/intern/node_geometry_exec.cc
index f54ef25d4d6..ce87b40fec7 100644
--- a/source/blender/nodes/intern/node_geometry_exec.cc
+++ b/source/blender/nodes/intern/node_geometry_exec.cc
@@ -254,6 +254,11 @@ std::string GeoNodeExecParams::attribute_producer_name() const
return provider_->dnode->label_or_name() + TIP_(" node");
}
+void GeoNodeExecParams::set_default_remaining_outputs()
+{
+ provider_->set_default_remaining_outputs();
+}
+
void GeoNodeExecParams::check_input_access(StringRef identifier,
const CPPType *requested_type) const
{