blob: 2e170f2d20c3b40982030f9b56dda07b7a0c90c3 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QQUICK3DPARTICLEDYNAMICBURST_H
#define QQUICK3DPARTICLEDYNAMICBURST_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtQuick3DParticles/private/qquick3dparticleemitburst_p.h>
QT_BEGIN_NAMESPACE
class Q_QUICK3DPARTICLES_EXPORT QQuick3DParticleDynamicBurst : public QQuick3DParticleEmitBurst
{
Q_OBJECT
Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)
Q_PROPERTY(int amountVariation READ amountVariation WRITE setAmountVariation NOTIFY amountVariationChanged)
Q_PROPERTY(TriggerMode triggerMode READ triggerMode WRITE setTriggerMode NOTIFY triggerModeChanged)
QML_NAMED_ELEMENT(DynamicBurst3D)
QML_ADDED_IN_VERSION(6, 3)
public:
enum TriggerMode
{
TriggerTime = 0,
TriggerStart,
TriggerEnd
};
Q_ENUM(TriggerMode)
explicit QQuick3DParticleDynamicBurst(QObject *parent = nullptr);
bool enabled() const;
int amountVariation() const;
TriggerMode triggerMode() const;
public Q_SLOTS:
void setEnabled(bool enabled);
void setAmountVariation(int value);
void setTriggerMode(TriggerMode mode);
Q_SIGNALS:
void enabledChanged();
void amountVariationChanged();
void triggerModeChanged();
private:
friend class QQuick3DParticleEmitter;
bool m_enabled = true;
int m_amountVariation = 0;
TriggerMode m_triggerMode = TriggerMode::TriggerTime;
};
QT_END_NAMESPACE
#endif // QQUICK3DPARTICLEDYNAMICBURST_H
|