blob: f1d33a5d4299fe9241ce902bc3edc8e734410547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "axissetting_p.h"
#include <Qt3DInput/qaxissetting.h>
#include <Qt3DInput/private/qaxissetting_p.h>
QT_BEGIN_NAMESPACE
namespace Qt3DInput {
namespace Input {
AxisSetting::AxisSetting()
: BackendNode()
, m_deadZoneRadius(0.0f)
, m_smooth(false)
{
}
void AxisSetting::cleanup()
{
QBackendNode::setEnabled(false);
m_deadZoneRadius = 0.0f;
m_axes.clear();
m_smooth = false;
}
void AxisSetting::syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime)
{
BackendNode::syncFromFrontEnd(frontEnd, firstTime);
const QAxisSetting *node = qobject_cast<const QAxisSetting *>(frontEnd);
if (!node)
return;
m_deadZoneRadius = node->deadZoneRadius();
m_axes = node->axes();
m_smooth = node->isSmoothEnabled();
}
} // namespace Input
} // namespace Qt3DInput
QT_END_NAMESPACE
|