2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 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("Dynamic Comparison", "Compares with dynamically created elements", Qt.resolvedUrl("dynamiccomparison.qml"));
|
|
|
|
addExample("StartStop", "Start and stop the simulation", Qt.resolvedUrl("startstop.qml"));
|
|
|
|
addExample("Timed group changes", "Emit into managed groups", Qt.resolvedUrl("timedgroupchanges.qml"));
|
|
|
|
addExample("Dynamic Emitters", "Dynamically instantiated emitters with a single system", Qt.resolvedUrl("dynamicemitters.qml"));
|
|
|
|
addExample("Multiple Painters", "Several ParticlePainters on the same logical particles", Qt.resolvedUrl("multiplepainters.qml"));
|
2012-06-18 04:13:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|