various node UI improvements

This commit is contained in:
itsmattkc
2019-07-16 13:25:38 -04:00
parent ea4e142e0c
commit a78cc3950a
26 changed files with 279 additions and 154 deletions
+6 -2
View File
@@ -22,8 +22,7 @@
#include "output.h"
NodeInput::NodeInput(Node* parent) :
NodeParam(parent),
NodeInput::NodeInput() :
can_accept_multiple_inputs_(false)
{
// Have at least one keyframe/value active at any time
@@ -97,3 +96,8 @@ void NodeInput::set_keyframing(bool k)
{
keyframing_ = k;
}
const QList<NodeParam::DataType> &NodeInput::inputs()
{
return inputs_;
}