aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/particles/customparticle/imagecolors.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/imagecolors.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/imagecolors.qml')
-rw-r--r--examples/declarative/particles/customparticle/imagecolors.qml23
1 files changed, 12 insertions, 11 deletions
diff --git a/examples/declarative/particles/customparticle/imagecolors.qml b/examples/declarative/particles/customparticle/imagecolors.qml
index 20d6220ee3..591fd2421f 100644
--- a/examples/declarative/particles/customparticle/imagecolors.qml
+++ b/examples/declarative/particles/customparticle/imagecolors.qml
@@ -41,35 +41,35 @@
import QtQuick 2.0
import QtQuick.Particles 2.0
-Rectangle{
+Rectangle {
width: 400
height: 400
- Rectangle{
+ Rectangle {
id: root
color: "white"
width: 310
height: 300
anchors.centerIn: parent
- ParticleSystem{ id: sys }
- CustomParticle{
+ ParticleSystem { id: sys }
+ CustomParticle {
system: sys
property real maxWidth: root.width
property real maxHeight: root.height
- ShaderEffectSource{
+ ShaderEffectSource {
id: pictureSource
sourceItem: picture
hideSource: true
}
- Image{
+ Image {
id: picture
source: "../images/smile.png"
}
- ShaderEffectSource{
+ ShaderEffectSource {
id: particleSource
sourceItem: particle
hideSource: true
}
- Image{
+ Image {
id: particle
source: "../images/particle.png"
}
@@ -99,7 +99,8 @@ Rectangle{
gl_FragColor = texture2D(pictureTexture, fTex2) * texture2D(particleTexture, qt_TexCoord0).w * fFade;
}"
}
- Emitter{
+
+ Emitter {
id: emitter
system: sys
enabled: false
@@ -107,9 +108,9 @@ Rectangle{
maximumEmitted: 1200
anchors.fill: parent
size: 32
- speed: PointDirection{ xVariation: 12; yVariation: 12 }
+ speed: PointDirection { xVariation: 12; yVariation: 12 }
}
- MouseArea{
+ MouseArea {
anchors.fill: parent
onClicked: emitter.burst(1200);
}