implemented gizmo transforming through the node graph

This commit is contained in:
itsmattkc
2022-05-15 14:36:30 -07:00
parent a2ff3d607a
commit e9844ee135
15 changed files with 157 additions and 79 deletions
+1 -2
View File
@@ -31,9 +31,8 @@ void NodeValueTree::SetNode(const NodeInput &input, const rational &time)
NodeTraverser traverser;
Node *connected_node = input.GetConnectedOutput();
Node::ValueHint value_hint = input.node()->GetValueHintForInput(input.input(), input.element());
NodeValueTable table = traverser.GenerateTable(connected_node, value_hint, TimeRange(time, time));
NodeValueTable table = traverser.GenerateTable(connected_node, TimeRange(time, time));
int index = traverser.GenerateRowValueElementIndex(input.node(), input.input(), input.element(), &table);