aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/particles/qquickparticlesystem/data/crashaffectors.qml
blob: 96a4038378be02de68a7fee85115fa0441ed5ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2017 reMarkable A/S
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.6
import QtQuick.Particles 2.0

ParticleSystem {
    running: false
    Affector { Component.onCompleted: destroy() }
    Emitter {
        Timer { interval: 1; running: true; onTriggered: parent.lifeSpan = 1 }
    }
}