2022-06-08 12:47:24 +00:00
|
|
|
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2015-07-08 10:51:59 +00:00
|
|
|
|
|
|
|
import QtQuick 2.4
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Scene3D 2.0
|
|
|
|
|
2015-11-07 19:02:14 +00:00
|
|
|
Window {
|
2015-07-08 10:51:59 +00:00
|
|
|
visible: true
|
2016-06-14 06:47:18 +00:00
|
|
|
width: 1024
|
|
|
|
height: 768
|
2016-08-10 07:43:57 +00:00
|
|
|
color: "black"
|
2015-07-08 10:51:59 +00:00
|
|
|
|
2016-08-10 07:43:57 +00:00
|
|
|
Item {
|
2015-07-08 10:51:59 +00:00
|
|
|
anchors.fill: parent
|
2016-06-14 06:47:18 +00:00
|
|
|
Scene3D {
|
|
|
|
id: scene3D
|
|
|
|
anchors.fill: parent
|
|
|
|
focus: true
|
|
|
|
aspects: ["input", "logic"]
|
|
|
|
Scene {}
|
|
|
|
}
|
2015-07-08 10:51:59 +00:00
|
|
|
}
|
|
|
|
}
|