aboutsummaryrefslogtreecommitdiffstats
path: root/examples/demos/maroon/maroon.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/demos/maroon/maroon.qml')
-rw-r--r--examples/demos/maroon/maroon.qml53
1 files changed, 24 insertions, 29 deletions
diff --git a/examples/demos/maroon/maroon.qml b/examples/demos/maroon/maroon.qml
index c3b736bd65..9511a0f06f 100644
--- a/examples/demos/maroon/maroon.qml
+++ b/examples/demos/maroon/maroon.qml
@@ -56,42 +56,37 @@ Item {
ParticleSystem {
id: particles
- }
-
- ImageParticle {
- id: bubble
- anchors.fill: parent
- system: particles
- source: "content/gfx/catch.png"
- opacity: 0.25
- smooth: true
- }
- Wander {
- system: particles
anchors.fill: parent
- xVariance: 25;
- pace: 25;
- }
- Emitter {
- id: fire
- system: particles
+ ImageParticle {
+ id: bubble
+ anchors.fill: parent
+ source: "content/gfx/catch.png"
+ opacity: 0.25
+ smooth: true
+ }
- width: parent.width
- height: 150
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 3
- startTime: 15000
+ Wander {
+ xVariance: 25;
+ pace: 25;
+ }
- emitRate: 2
- lifeSpan: 15000
+ Emitter {
+ width: parent.width
+ height: 150
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 3
+ startTime: 15000
- acceleration: PointDirection{ y: -6; xVariation: 2; yVariation: 2 }
+ emitRate: 2
+ lifeSpan: 15000
- size: 24
- sizeVariation: 16
- }
+ acceleration: PointDirection{ y: -6; xVariation: 2; yVariation: 2 }
+ size: 24
+ sizeVariation: 16
+ }
+ }
}
Column {