aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/minehunt/MinehuntCore/Explosion.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/minehunt/MinehuntCore/Explosion.qml')
-rw-r--r--examples/declarative/minehunt/MinehuntCore/Explosion.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/minehunt/MinehuntCore/Explosion.qml b/examples/declarative/minehunt/MinehuntCore/Explosion.qml
index 225c19d8a3..af98ad1309 100644
--- a/examples/declarative/minehunt/MinehuntCore/Explosion.qml
+++ b/examples/declarative/minehunt/MinehuntCore/Explosion.qml
@@ -48,14 +48,14 @@ Item {
width: 40
height: 40
ImageParticle {
- particles: ["star"]
+ groups: ["star"]
source: "file:MinehuntCore/pics/star.png" // TODO: Use qrc path once QTBUG-21129 is fixed
}
Emitter {
id: particles
emitting: false
anchors.centerIn: parent
- particle: "star"
+ group: "star"
speed: AngledDirection { angleVariation: 360; magnitude: 150; magnitudeVariation: 50 }
emitRate: 200
z: 100