aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/customparticle/imagecolors.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/particles/customparticle/imagecolors.qml')
-rw-r--r--examples/declarative/particles/customparticle/imagecolors.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/declarative/particles/customparticle/imagecolors.qml b/examples/declarative/particles/customparticle/imagecolors.qml
index 591fd2421f..0498631fa4 100644
--- a/examples/declarative/particles/customparticle/imagecolors.qml
+++ b/examples/declarative/particles/customparticle/imagecolors.qml
@@ -62,7 +62,7 @@ Rectangle {
}
Image {
id: picture
- source: "../images/smile.png"
+ source: "../images/starfish_3.png"
}
ShaderEffectSource {
id: particleSource
@@ -71,7 +71,7 @@ Rectangle {
}
Image {
id: particle
- source: "../images/particle.png"
+ source: "../images/particle4.png"
}
vertexShader:"
uniform highp float maxWidth;
@@ -104,15 +104,15 @@ Rectangle {
id: emitter
system: sys
enabled: false
- lifeSpan: 4000
- maximumEmitted: 1200
+ lifeSpan: 8000
+ maximumEmitted: 4000
anchors.fill: parent
- size: 32
- speed: PointDirection { xVariation: 12; yVariation: 12 }
+ size: 16
+ acceleration: PointDirection { xVariation: 12; yVariation: 12 }
}
MouseArea {
anchors.fill: parent
- onClicked: emitter.burst(1200);
+ onClicked: emitter.burst(4000);
}
}
}