Cleanup: add type inheritance for Cycles nodes
This commit is contained in:
@@ -200,7 +200,7 @@ void xml_read_node(XMLReader &reader, Node *node, xml_node xml_node)
|
||||
map<ustring, Node *>::iterator it = reader.node_map.find(value);
|
||||
if (it != reader.node_map.end()) {
|
||||
Node *value_node = it->second;
|
||||
if (value_node->type == *(socket.node_type))
|
||||
if (value_node->is_a(*(socket.node_type)))
|
||||
node->set(socket, it->second);
|
||||
}
|
||||
break;
|
||||
@@ -215,7 +215,7 @@ void xml_read_node(XMLReader &reader, Node *node, xml_node xml_node)
|
||||
map<ustring, Node *>::iterator it = reader.node_map.find(ustring(tokens[i]));
|
||||
if (it != reader.node_map.end()) {
|
||||
Node *value_node = it->second;
|
||||
value[i] = (value_node->type == *(socket.node_type)) ? value_node : NULL;
|
||||
value[i] = (value_node->is_a(*(socket.node_type))) ? value_node : NULL;
|
||||
}
|
||||
else {
|
||||
value[i] = NULL;
|
||||
|
||||
Reference in New Issue
Block a user