summaryrefslogtreecommitdiffstats
path: root/tests/manual/distancefieldtext-dynamic/main.qml
blob: dcad11a7860b4e370e52722a165517ede3ae8a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2023 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0
import QtQuick.Scene3D 2.0

Scene3D {
    id: scene3d

    focus: true
    aspects: ["input", "logic", "render"]
    cameraAspectRatioMode: Scene3D.AutomaticAspectRatio

    TextScene {
        id: textScene
    }
}