aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/trails/layered.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/particles/trails/layered.qml')
-rw-r--r--examples/declarative/particles/trails/layered.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/declarative/particles/trails/layered.qml b/examples/declarative/particles/trails/layered.qml
index b2895dd617..d4a823b556 100644
--- a/examples/declarative/particles/trails/layered.qml
+++ b/examples/declarative/particles/trails/layered.qml
@@ -59,20 +59,20 @@ Rectangle{
system: sys
y:root.height + 20
width: root.width
- particlesPerSecond: 200
- particleDuration: 4000
+ emitRate: 200
+ lifeSpan: 4000
speed: PointDirection{ y: -120; }
}
ImageParticle{
system: sys
visible: !cloneMode
- image: "content/particle2.png"
+ source: "content/particle2.png"
}
ImageParticle{
system: sys
visible: cloneMode
z: 0
- image: "content/particle3.png"
+ source: "content/particle3.png"
}
ImageParticle{
system: sys
@@ -82,6 +82,6 @@ Rectangle{
height: 240
width: root.width
z: 1
- image: "content/particle.png"
+ source: "content/particle.png"
}
}