summaryrefslogtreecommitdiffstats
path: root/examples/declarative/minehunt/Explosion.qml
blob: 8d868bce1787c89d24f9d314ac693ebae36b8e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Item {
    properties: Property {
        name: "explode"
        type: "Bool"
        value: false
    }
    Particles {
        width: 38
        height: 21
        lifeSpan: 3600000
        lifeSpanDeviation: 0
        source: "pics/star.png"
        count: 200
        angle: 270
        angleDeviation: 360
        velocity: 100
        velocityDeviation: 20
        z: 100
        emitting: explode
    }
}