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-06-11 15:54:44 +0300
committerJacques Lucke <jacques@blender.org>2021-06-11 15:55:10 +0300
commitfe22635bf664af844933695ba3a0d79a01807818 (patch)
tree3a63201a119dfdc79d3627708c6408881ca74ff1 /source/blender/nodes/NOD_derived_node_tree.hh
parentc0367b19e20e7bd7ffe25588dee6466c1a8157e8 (diff)
Nodes: add utilities to check if there are undefined nodes/sockets
Diffstat (limited to 'source/blender/nodes/NOD_derived_node_tree.hh')
-rw-r--r--source/blender/nodes/NOD_derived_node_tree.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/NOD_derived_node_tree.hh b/source/blender/nodes/NOD_derived_node_tree.hh
index 7ff05449c0b..e12e0bde975 100644
--- a/source/blender/nodes/NOD_derived_node_tree.hh
+++ b/source/blender/nodes/NOD_derived_node_tree.hh
@@ -173,6 +173,7 @@ class DerivedNodeTree {
Span<const NodeTreeRef *> used_node_tree_refs() const;
bool has_link_cycles() const;
+ bool has_undefined_nodes_or_sockets() const;
void foreach_node(FunctionRef<void(DNode)> callback) const;
std::string to_dot() const;