summaryrefslogtreecommitdiffstats
path: root/tests/manual/transparency-qml-scene3d/main.qml
blob: 2ce631f13bcbd222f00fe43776043962f8716c3f (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
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.4
import QtQuick.Window 2.2
import QtQuick.Scene3D 2.0

Window {
    visible: true
    width: 1024
    height: 768
    color: "black"

    Item {
        anchors.fill: parent
        Scene3D {
            id: scene3D
            anchors.fill: parent
            focus: true
            aspects: ["input", "logic"]
            Scene {}
        }
    }
}