Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquick3dparticledirection.cpp
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
5
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
18QQuick3DParticleDirection::QQuick3DParticleDirection(QObject *parent)
19 : QObject(parent)
20{
21}
22
23QT_END_NAMESPACE