summaryrefslogtreecommitdiffstats
path: root/src/animation/backend/clipblendnode.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2017-01-27 16:44:57 +0100
committerSean Harmer <sean.harmer@kdab.com>2017-01-29 09:39:48 +0000
commita6e1ac3f584eb08cecfb154ac7d96dee6beaf44d (patch)
treef5d5c328d6c8de0899cf4be51375cebb7b813ed7 /src/animation/backend/clipblendnode.cpp
parent98399b24b778af6c26c8c73736805083ce614df5 (diff)
Register QLerpBlend node with Animation aspect
Change-Id: I7b8fade4aa8855030e882227df21882e55d8690f Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/animation/backend/clipblendnode.cpp')
-rw-r--r--src/animation/backend/clipblendnode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/animation/backend/clipblendnode.cpp b/src/animation/backend/clipblendnode.cpp
index cd2c1701f..a763f7f48 100644
--- a/src/animation/backend/clipblendnode.cpp
+++ b/src/animation/backend/clipblendnode.cpp
@@ -37,7 +37,6 @@
#include "clipblendnode_p.h"
#include <Qt3DAnimation/qclipblendnodecreatedchange.h>
#include <Qt3DAnimation/qanimationclip.h>
-#include <Qt3DAnimation/private/managers_p.h>
#include <Qt3DCore/qpropertynoderemovedchange.h>
#include <Qt3DCore/qpropertynodeaddedchange.h>
@@ -48,7 +47,8 @@ namespace Qt3DAnimation {
namespace Animation {
ClipBlendNode::ClipBlendNode(BlendType blendType)
- : m_manager(nullptr)
+ : BackendNode(ReadOnly) // Makes sense for now at least
+ , m_manager(nullptr)
, m_blendType(blendType)
{
}