2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-10-14 07:06:39 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Particles
|
2011-10-14 07:06:39 +00:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
width: 360
|
|
|
|
height: 540
|
|
|
|
color: "black"
|
|
|
|
ParticleSystem {
|
|
|
|
anchors.fill: parent
|
|
|
|
ImageParticle {
|
|
|
|
groups: ["A"]
|
|
|
|
anchors.fill: parent
|
2013-04-01 20:45:21 +00:00
|
|
|
source: "qrc:///particleresources/star.png"
|
2011-10-14 07:06:39 +00:00
|
|
|
color:"#FF1010"
|
|
|
|
redVariation: 0.8
|
|
|
|
}
|
|
|
|
|
|
|
|
Emitter {
|
|
|
|
group: "A"
|
|
|
|
emitRate: 100
|
|
|
|
lifeSpan: 2800
|
|
|
|
size: 32
|
|
|
|
sizeVariation: 8
|
2012-06-25 02:01:46 +00:00
|
|
|
velocity: PointDirection{ x: 66; xVariation: 20 }
|
2011-10-14 07:06:39 +00:00
|
|
|
width: 80
|
|
|
|
height: 80
|
|
|
|
}
|
|
|
|
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [A]
|
2011-10-20 07:48:40 +00:00
|
|
|
Affector {
|
2011-10-14 07:06:39 +00:00
|
|
|
groups: ["A"]
|
|
|
|
x: 120
|
|
|
|
width: 80
|
|
|
|
height: 80
|
|
|
|
once: true
|
|
|
|
position: PointDirection { x: 120; }
|
|
|
|
}
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [A]
|
2011-10-14 07:06:39 +00:00
|
|
|
|
|
|
|
ImageParticle {
|
|
|
|
groups: ["B"]
|
|
|
|
anchors.fill: parent
|
2013-04-01 20:45:21 +00:00
|
|
|
source: "qrc:///particleresources/star.png"
|
2011-10-14 07:06:39 +00:00
|
|
|
color:"#10FF10"
|
|
|
|
greenVariation: 0.8
|
|
|
|
}
|
|
|
|
|
|
|
|
Emitter {
|
|
|
|
group: "B"
|
|
|
|
emitRate: 100
|
|
|
|
lifeSpan: 2800
|
|
|
|
size: 32
|
|
|
|
sizeVariation: 8
|
2012-06-25 02:01:46 +00:00
|
|
|
velocity: PointDirection{ x: 240; xVariation: 60 }
|
2011-10-14 07:06:39 +00:00
|
|
|
y: 260
|
|
|
|
width: 10
|
|
|
|
height: 10
|
|
|
|
}
|
|
|
|
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [B]
|
2011-10-20 07:48:40 +00:00
|
|
|
Affector {
|
2011-10-14 07:06:39 +00:00
|
|
|
groups: ["B"]
|
|
|
|
x: 120
|
|
|
|
y: 240
|
|
|
|
width: 80
|
|
|
|
height: 80
|
|
|
|
once: true
|
2012-06-25 02:01:46 +00:00
|
|
|
velocity: AngleDirection { angleVariation:360; magnitude: 72 }
|
2011-10-14 07:06:39 +00:00
|
|
|
}
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [B]
|
2011-10-14 07:06:39 +00:00
|
|
|
|
|
|
|
ImageParticle {
|
|
|
|
groups: ["C"]
|
|
|
|
anchors.fill: parent
|
2013-04-01 20:45:21 +00:00
|
|
|
source: "qrc:///particleresources/star.png"
|
2011-10-14 07:06:39 +00:00
|
|
|
color:"#1010FF"
|
|
|
|
blueVariation: 0.8
|
|
|
|
}
|
|
|
|
|
|
|
|
Emitter {
|
|
|
|
group: "C"
|
|
|
|
y: 400
|
|
|
|
emitRate: 100
|
|
|
|
lifeSpan: 2800
|
|
|
|
size: 32
|
|
|
|
sizeVariation: 8
|
2012-06-25 02:01:46 +00:00
|
|
|
velocity: PointDirection{ x: 80; xVariation: 10 }
|
2011-10-20 07:48:40 +00:00
|
|
|
acceleration: PointDirection { y: 10; x: 20; }
|
2011-10-14 07:06:39 +00:00
|
|
|
width: 80
|
|
|
|
height: 80
|
|
|
|
}
|
|
|
|
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [C]
|
2011-10-20 07:48:40 +00:00
|
|
|
Affector {
|
2011-10-14 07:06:39 +00:00
|
|
|
groups: ["C"]
|
|
|
|
x: 120
|
|
|
|
y: 400
|
|
|
|
width: 80
|
2011-10-20 07:48:40 +00:00
|
|
|
height: 120
|
2011-10-14 07:06:39 +00:00
|
|
|
once: true
|
2011-10-20 07:48:40 +00:00
|
|
|
relative: false
|
2011-10-14 07:06:39 +00:00
|
|
|
acceleration: PointDirection { y: -80; }
|
|
|
|
}
|
2012-06-06 10:28:17 +00:00
|
|
|
//! [C]
|
2011-10-14 07:06:39 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|