summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/qgltf/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/qgltf/main.qml')
-rw-r--r--examples/qt3d/qgltf/main.qml39
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/qt3d/qgltf/main.qml b/examples/qt3d/qgltf/main.qml
deleted file mode 100644
index e4206d3b0..000000000
--- a/examples/qt3d/qgltf/main.qml
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
-// Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import Qt3D.Core 2.0
-import Qt3D.Render 2.0
-import Qt3D.Extras 2.0
-import Qt3D.Input 2.0
-
-Entity {
- id: sceneRoot
-
- Camera {
- id: camera
- projectionType: CameraLens.PerspectiveProjection
- fieldOfView: 45
- aspectRatio: 16/9
- nearPlane : 0.1
- farPlane : 1000.0
- position: Qt.vector3d( 0.0, 80.0, 120.0 )
- upVector: Qt.vector3d( 0.0, 1.0, 0.0 )
- viewCenter: Qt.vector3d( 0.0, 0.0, 0.0 )
- }
-
- FirstPersonCameraController { camera: camera }
-
- components: [
- RenderSettings {
- activeFrameGraph: ForwardRenderer {
- clearColor: Qt.rgba(0, 0.5, 1, 1)
- camera: camera
- }
- },
- InputSettings {}
- ]
-
- Scene {
- }
-}