aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/trails/portal.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/particles/trails/portal.qml')
-rw-r--r--examples/declarative/particles/trails/portal.qml22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/declarative/particles/trails/portal.qml b/examples/declarative/particles/trails/portal.qml
index ae9b447fb9..8cf323b0f5 100644
--- a/examples/declarative/particles/trails/portal.qml
+++ b/examples/declarative/particles/trails/portal.qml
@@ -58,7 +58,7 @@ Rectangle{
particles: ["center","edge"]
anchors.fill: parent
system: particles
- image: "content/particle.png"
+ source: "content/particle.png"
colorVariation: 0.1
color: "#009999FF"
}
@@ -66,12 +66,12 @@ Rectangle{
anchors.fill: parent
particle: "center"
system: particles
- particlesPerSecond: 200
- particleDuration: 2000
+ emitRate: 200
+ lifeSpan: 2000
emitting: true
- particleSize: 20
- particleSizeVariation: 2
- particleEndSize: 0
+ size: 20
+ sizeVariation: 2
+ endSize: 0
shape: EllipseShape{fill: false}
speed: TargetedDirection{
targetX: root.width/2
@@ -84,12 +84,12 @@ Rectangle{
anchors.fill: parent
particle: "edge"
system: particles
- particlesPerSecond: 4000
- particleDuration: 2000
+ emitRate: 4000
+ lifeSpan: 2000
emitting: true
- particleSize: 20
- particleSizeVariation: 2
- particleEndSize: 0
+ size: 20
+ sizeVariation: 2
+ endSize: 0
shape: EllipseShape{fill: false}
speed: TargetedDirection{
targetX: root.width/2