blob: 357b2ba2fe3d7162e0a31f9142aa9aa56f2e1217 (
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
46
|
// 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
#ifndef QT3DLOGIC_QFRAMEACTION_H
#define QT3DLOGIC_QFRAMEACTION_H
#include <Qt3DCore/qcomponent.h>
#include <Qt3DLogic/qt3dlogic_global.h>
QT_BEGIN_NAMESPACE
namespace Qt3DLogic {
class QLogicAspect;
class QFrameActionPrivate;
namespace Logic {
class Executor;
}
class Q_3DLOGICSHARED_EXPORT QFrameAction : public Qt3DCore::QComponent
{
Q_OBJECT
public:
explicit QFrameAction(Qt3DCore::QNode *parent = nullptr);
~QFrameAction();
protected:
QFrameAction(QFrameActionPrivate &dd, QNode *parent = nullptr);
Q_SIGNALS:
void triggered(float dt);
private:
Q_DECLARE_PRIVATE(QFrameAction)
void onTriggered(float dt);
friend class Logic::Executor;
};
} // namespace Qt3DLogic
QT_END_NAMESPACE
#endif // QT3DLOGIC_QFRAMEACTION_H
|