finished moving field data retrieving to row
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include "colorinput.h"
|
||||
|
||||
ColorInput::ColorInput(Effect* parent, const QString& id, const QString& name, bool savable, bool keyframable) :
|
||||
EffectRow(parent, id, name, savable, keyframable)
|
||||
{
|
||||
AddField(new ColorField(this));
|
||||
}
|
||||
|
||||
QColor ColorInput::GetColorAt(double timecode)
|
||||
{
|
||||
static_cast<ColorField*>(Field(0))->GetColorAt(timecode);
|
||||
}
|
||||
Reference in New Issue
Block a user