2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2018-06-26 13:53:07 +00:00
|
|
|
|
2020-12-01 12:57:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Particles
|
2018-06-26 13:53:07 +00:00
|
|
|
|
|
|
|
Emitter {
|
|
|
|
anchors.fill: parent
|
|
|
|
velocity: AngleDirection{angleVariation: 360; magnitude: 140; magnitudeVariation: 40}
|
|
|
|
enabled: false;
|
|
|
|
lifeSpan: 500;
|
|
|
|
emitRate: 1
|
|
|
|
size: 28
|
|
|
|
endSize: 14
|
|
|
|
group: "yellow"
|
|
|
|
}
|