Implemented time offset node

This commit is contained in:
itsmattkc
2022-02-01 19:55:09 -08:00
parent 5cf076082c
commit f9112c05fd
6 changed files with 194 additions and 0 deletions
+3
View File
@@ -53,6 +53,7 @@
#include "project/folder/folder.h"
#include "project/footage/footage.h"
#include "project/sequence/sequence.h"
#include "time/timeoffset/timeoffsetnode.h"
#include "time/timeremap/timeremap.h"
namespace olive {
@@ -261,6 +262,8 @@ Node *NodeFactory::CreateFromFactoryIndex(const NodeFactory::InternalID &id)
return new FlipDistortNode();
case kNoiseGenerator:
return new NoiseGeneratorNode();
case kTimeOffsetNode:
return new TimeOffsetNode();
case kInternalNodeCount:
break;