can visually see connections between parameters in the node view
This commit is contained in:
@@ -60,3 +60,13 @@ QList<NodeParam *> Node::parameters()
|
||||
{
|
||||
return static_qobjectlist_cast<NodeParam>(children());
|
||||
}
|
||||
|
||||
int Node::ParameterCount()
|
||||
{
|
||||
return children().size();
|
||||
}
|
||||
|
||||
int Node::IndexOfParameter(NodeParam *param)
|
||||
{
|
||||
return children().indexOf(param);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user