| 241 | } |
| 242 | |
| 243 | Node *Node::get_node(const SocketType &input) const |
| 244 | { |
| 245 | assert(input.type == SocketType::NODE); |
| 246 | return get_socket_value<Node *>(this, input); |
| 247 | } |
| 248 | |
| 249 | /* get array values */ |
| 250 | const array<bool> &Node::get_bool_array(const SocketType &input) const |