implemented a footage viewer

Essentially a minor derivation of a viewer type that can automatically view
footage from the project (i.e. not in a sequence).
This commit is contained in:
itsmattkc
2019-12-30 20:17:48 +11:00
parent 55ea4a8177
commit 0db13a96ab
34 changed files with 439 additions and 152 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ rational ViewerOutput::Length()
Node* connected_node = length_input_->get_connected_node();
if (connected_node) {
return connected_node->Value(NodeValueDatabase()).Get(NodeParam::kNumber).value<rational>();
return connected_node->Value(NodeValueDatabase()).Get(NodeParam::kNumber, "length").value<rational>();
}
return 0;