summaryrefslogtreecommitdiffstats
path: root/demos/declarative/minehunt/MinehuntCore/Explosion.qml
blob: 73ada60e00e07d38a5643c3caa605b35cf76700a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Qt 4.7
import Qt.labs.particles 1.0

Item {
    property bool explode : false

    Particles {
        id: particles
        width: 40
        height: 40
        lifeSpan: 1000
        lifeSpanDeviation: 0
        source: "pics/star.png"
        count: 0
        angle: 270
        angleDeviation: 360
        velocity: 100
        velocityDeviation: 20
        z: 100
    }
    states: State { name: "exploding"; when: explode
        StateChangeScript {script: particles.burst(200); }
    }

}