1 | // Copyright (C) 2021 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #include "qquick3dparticledirection_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | /*! |
9 | \qmltype Direction3D |
10 | \inherits QtObject |
11 | \inqmlmodule QtQuick3D.Particles3D |
12 | \brief Directions assign velocity for the emitted particles. |
13 | \since 6.2 |
14 | |
15 | The Direction3D is an abstract base class of directions like \l TargetDirection3D and \l VectorDirection3D. |
16 | */ |
17 | |
18 | QQuick3DParticleDirection::QQuick3DParticleDirection(QObject *parent) |
19 | : QObject(parent) |
20 | { |
21 | } |
22 | |
23 | QT_END_NAMESPACE |
24 | |