Merge branch 'blender-v3.3-release'

This commit is contained in:
Jacques Lucke 2022-08-23 12:40:58 +02:00
commit 511ff898da
1 changed files with 6 additions and 0 deletions

View File

@ -94,6 +94,9 @@ static InputSocketFieldType get_interface_input_field_type(const NodeRef &node,
if (node.is_undefined()) {
return InputSocketFieldType::None;
}
if (node.bnode()->type == NODE_CUSTOM) {
return InputSocketFieldType::None;
}
const NodeDeclaration *node_decl = node.declaration();
@ -131,6 +134,9 @@ static OutputFieldDependency get_interface_output_field_dependency(const NodeRef
if (node.is_undefined()) {
return OutputFieldDependency::ForDataSource();
}
if (node.bnode()->type == NODE_CUSTOM) {
return OutputFieldDependency::ForDataSource();
}
const NodeDeclaration *node_decl = node.declaration();