ported functions to new node type

This commit is contained in:
itsmattkc
2019-05-13 12:00:15 +10:00
parent f796c2b379
commit 49feb12999
53 changed files with 296 additions and 269 deletions
+11
View File
@@ -24,3 +24,14 @@ Node *NodeGraph::OutputNode()
{
return output_node_;
}
double NodeGraph::Time()
{
return time_;
}
void NodeGraph::SetTime(double d)
{
time_ = d;
emit TimeChanged();
}