merged effects into node structure
This commit is contained in:
@@ -1,6 +1,42 @@
|
||||
#include "nodeimageoutput.h"
|
||||
|
||||
NodeImageOutput::NodeImageOutput()
|
||||
NodeImageOutput::NodeImageOutput(Clip *c) :
|
||||
Node(c)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
QString NodeImageOutput::name()
|
||||
{
|
||||
return tr("Image Output");
|
||||
}
|
||||
|
||||
QString NodeImageOutput::id()
|
||||
{
|
||||
return "org.olivevideoeditor.Olive.imageoutput";
|
||||
}
|
||||
|
||||
QString NodeImageOutput::category()
|
||||
{
|
||||
return tr("Outputs");
|
||||
}
|
||||
|
||||
QString NodeImageOutput::description()
|
||||
{
|
||||
return tr("Used for outputting images outside of the node graph.");
|
||||
}
|
||||
|
||||
EffectType NodeImageOutput::type()
|
||||
{
|
||||
return EFFECT_TYPE_EFFECT;
|
||||
}
|
||||
|
||||
olive::TrackType NodeImageOutput::subtype()
|
||||
{
|
||||
return olive::kTypeVideo;
|
||||
}
|
||||
|
||||
NodePtr NodeImageOutput::Create(Clip *c)
|
||||
{
|
||||
return std::make_shared<NodeImageOutput>(c);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user