VectorDirection3D QML Type

For specifying a direction towards the target direction. More...

Import Statement: import QtQuick3D.Particles3D .
Since: Qt 6.1
Inherits:

Direction3D

Properties

Detailed Description

This element sets emitted particle velocity towards the target direction vector. The length of the direction vector is used as the velocity magnitude.

For example, to emit particles towards some random direction within x: 50..150, y: -20..20, z: 0:

ParticleEmitter3D {
    ...
    velocity: VectorDirection3D {
        direction: Qt.vector3d(100, 0, 0)
        directionVariation: Qt.vector3d(50, 20, 0)
    }
}

Property Documentation

direction : vector3d

This property defines the direction for particles target.

The default value is (0, 100, 0) (upwards on the y-axis).

See also directionVariation.

directionVariation : vector3d

This property defines the direction variation for particles target.

The default value is (0, 0, 0) (no variation).

See also direction.

© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.1/qml-qtquick3d-particles3d-vectordirection3d.html