aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick3d/particles3d/AppSettings.qml
blob: ffe7ef4e55ab3adcd6967dfdc48cc50d69c97c5f (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
26
27
28
29
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

pragma Singleton

import QtQuick
import QtQuick3D

QtObject {
    id: settings
    objectName: "test"
    // Antialiasing mode & quality used in all examples.
    property int antialiasingMode: SceneEnvironment.NoAA
    property int antialiasingQuality: SceneEnvironment.High
    // Toggle default visibility of these views
    property bool showSettingsView: true
    property bool showLoggingView: false
    // Fonts in pointSizes
    // These are used mostly on examples in 3D side
    property real fontSizeLarge: 16
    // These are used mostly on settings
    property real fontSizeSmall: 10
    property real iconSize: 24
    function testFunction() {
        console.log("testFunction called")
    }

}