aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/custom/blurparticles.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-06-08 17:55:41 +1000
committerAlan Alpert <alan.alpert@nokia.com>2011-06-08 18:03:39 +1000
commitc8a5c00ec1c06f7c00070d55cd61cb8d52dc67cf (patch)
tree95caddcee9dd998e128e22d64c4ba23dfab747b6 /examples/declarative/particles/custom/blurparticles.qml
parent1f88f2ceedf00f96e2491ecdd1c655b0f12f3632 (diff)
Immense Particles Refactor Part D
Changed the names of several properties: FollowEmitter: emissionShape->emitShape emissionHeight->emitHeight emissionWidth->emitWidth Emitter: particlesPerSecond->emitRate particleDuration->lifeSpan particleDurationVariation->lifeSpanVariation maxParticles->emitCap particleSize->size particleEndSize->endSize particleSizeVariation->sizeVariation ImageParticle: image->source And stopped being silly in the example launcher.
Diffstat (limited to 'examples/declarative/particles/custom/blurparticles.qml')
-rw-r--r--examples/declarative/particles/custom/blurparticles.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/particles/custom/blurparticles.qml b/examples/declarative/particles/custom/blurparticles.qml
index 7d0f9cc6ac..8a3e9ad803 100644
--- a/examples/declarative/particles/custom/blurparticles.qml
+++ b/examples/declarative/particles/custom/blurparticles.qml
@@ -11,10 +11,10 @@ Rectangle{
Emitter{
system:sys
height: parent.height
- particlesPerSecond: 1
- particleDuration: 12000
+ emitRate: 1
+ lifeSpan: 12000
speed: PointDirection{x:20;}
- particleSize: 64
+ size: 64
}
ShaderEffectSource{
id: theSource