blob: 0257398d97ee9c8a179ad905cf57b11902e107e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Particles
Emitter {
anchors.fill: parent
velocity: AngleDirection{angleVariation: 360; magnitude: 140; magnitudeVariation: 40}
enabled: false;
lifeSpan: 500;
emitRate: 1
size: 28
endSize: 14
group: "yellow"
}
|