summaryrefslogtreecommitdiffstats
path: root/tests/manual/shadow-map-qml/ShadowMapLight.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/shadow-map-qml/ShadowMapLight.qml')
-rw-r--r--tests/manual/shadow-map-qml/ShadowMapLight.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/manual/shadow-map-qml/ShadowMapLight.qml b/tests/manual/shadow-map-qml/ShadowMapLight.qml
new file mode 100644
index 000000000..797aeb769
--- /dev/null
+++ b/tests/manual/shadow-map-qml/ShadowMapLight.qml
@@ -0,0 +1,28 @@
+// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import Qt3D.Core 2.0
+import Qt3D.Render 2.0
+
+Entity {
+ id: root
+
+ property vector3d lightPosition: Qt.vector3d(30.0, 30.0, 0.0)
+ property vector3d lightIntensity: Qt.vector3d(1.0, 1.0, 1.0)
+
+ readonly property Camera lightCamera: lightCamera
+ readonly property matrix4x4 lightViewProjection: lightCamera.projectionMatrix.times(lightCamera.viewMatrix)
+
+ Camera {
+ id: lightCamera
+ objectName: "lightCameraLens"
+ projectionType: CameraLens.PerspectiveProjection
+ fieldOfView: 45
+ aspectRatio: 1
+ nearPlane : 0.1
+ farPlane : 200.0
+ position: root.lightPosition
+ viewCenter: Qt.vector3d(0.0, 0.0, 0.0)
+ upVector: Qt.vector3d(0.0, 1.0, 0.0)
+ }
+}