transitions are now editable

This commit is contained in:
itsmattkc
2018-08-08 08:55:22 +10:00
parent b29462e68b
commit ce9d7338af
9 changed files with 292 additions and 100 deletions
+4 -2
View File
@@ -4,13 +4,15 @@
#include <QDebug>
Transition::Transition() {
Transition::Transition(int i, QString n) : id(i), name(n) {
length = 30;
link = NULL;
}
Transition::~Transition() {}
Transition* Transition::copy() {
return new Transition();
return NULL;
}
void Transition::process_transition(float) {}