aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/customparticle/blurparticles.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-09-20 17:16:36 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-21 07:11:25 +0200
commitc07ea77a6201ef5595ff5714fba891be4408fa9a (patch)
treea76327735961f81130bffeeb9a62f2fcb7fec8bb /examples/declarative/particles/customparticle/blurparticles.qml
parentef98f5a80369e3f014585edc3dd63a2ec331d1ea (diff)
Add whitespace
Change-Id: Iad55228ffa86bbf63b12a33d0f00ce734807c071 Reviewed-on: http://codereview.qt-project.org/5199 Reviewed-by: Bea Lam <bea.lam@nokia.com>
Diffstat (limited to 'examples/declarative/particles/customparticle/blurparticles.qml')
-rw-r--r--examples/declarative/particles/customparticle/blurparticles.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/declarative/particles/customparticle/blurparticles.qml b/examples/declarative/particles/customparticle/blurparticles.qml
index 4c33d14969..9767818bd3 100644
--- a/examples/declarative/particles/customparticle/blurparticles.qml
+++ b/examples/declarative/particles/customparticle/blurparticles.qml
@@ -41,32 +41,32 @@
import QtQuick 2.0
import QtQuick.Particles 2.0
-Rectangle{
+Rectangle {
color: "white"
width: 240
height: 360
- ParticleSystem{
+ ParticleSystem {
id: sys
}
- Emitter{
+ Emitter {
system:sys
height: parent.height
emitRate: 1
lifeSpan: 12000
- speed: PointDirection{x:20;}
+ speed: PointDirection {x:20;}
size: 64
}
- ShaderEffectSource{
+ ShaderEffectSource {
id: theSource
sourceItem: theItem
hideSource: true
}
- Image{
+ Image {
id: theItem
source: "../images/smile.png"
}
- CustomParticle{
+ CustomParticle {
system: sys
vertexShader:"
uniform lowp float qt_Opacity;