Files
oak-editor/nodes/inputs/fontinput.cpp
T

13 lines
340 B
C++

#include "fontinput.h"
FontInput::FontInput(Effect* parent, const QString& id, const QString& name, bool savable, bool keyframable) :
EffectRow(parent, id, name, savable, keyframable)
{
AddField(new FontField(this));
}
QString FontInput::GetFontAt(double timecode)
{
return static_cast<FontField*>(Field(0))->GetFontAt(timecode);
}