2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2012-06-18 04:13:31 +00:00
|
|
|
|
2021-11-08 15:46:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import shared
|
2012-06-18 04:13:31 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
height: 480
|
|
|
|
width: 320
|
2021-11-08 15:46:32 +00:00
|
|
|
LauncherList {
|
2012-06-18 04:13:31 +00:00
|
|
|
id: ll
|
|
|
|
anchors.fill: parent
|
|
|
|
Component.onCompleted: {
|
2021-11-08 15:46:32 +00:00
|
|
|
addExample("All at once", "Uses all ImageParticle features", Qt.resolvedUrl("allatonce.qml"));
|
|
|
|
addExample("Colored", "Colorized image particles", Qt.resolvedUrl("colored.qml"));
|
|
|
|
addExample("Color Table", "Color-over-life rainbow particles", Qt.resolvedUrl("colortable.qml"));
|
|
|
|
addExample("Deformation", "Deformed particles", Qt.resolvedUrl("deformation.qml"));
|
|
|
|
addExample("Rotation", "Rotated particles", Qt.resolvedUrl("rotation.qml"));
|
|
|
|
addExample("Sharing", "Multiple ImageParticles on the same particles", Qt.resolvedUrl("sharing.qml"));
|
|
|
|
addExample("Sprites", "Particles rendered with sprites", Qt.resolvedUrl("sprites.qml"));
|
2012-06-18 04:13:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|