Merge branch 'blender-v3.4-release'

This commit is contained in:
Jacques Lucke 2022-11-23 17:03:17 +01:00
commit 583f19d692
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@ bool nodeGroupPoll(const bNodeTree *nodetree,
}
return false;
}
if (nodetree->type != grouptree->type) {
*r_disabled_hint = TIP_("Node group has different type");
return false;
}
LISTBASE_FOREACH (const bNode *, node, &grouptree->nodes) {
if (node->typeinfo->poll_instance &&