summaryrefslogtreecommitdiffstats
path: root/tests/manual/shadow-map-qml/GroundPlane.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/shadow-map-qml/GroundPlane.qml')
-rw-r--r--tests/manual/shadow-map-qml/GroundPlane.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/manual/shadow-map-qml/GroundPlane.qml b/tests/manual/shadow-map-qml/GroundPlane.qml
new file mode 100644
index 000000000..278f50432
--- /dev/null
+++ b/tests/manual/shadow-map-qml/GroundPlane.qml
@@ -0,0 +1,29 @@
+// 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
+import Qt3D.Extras 2.0
+
+Entity {
+ id: root
+ property Material material
+
+ PlaneMesh {
+ id: groundMesh
+ width: 50
+ height: width
+ meshResolution: Qt.size(2, 2)
+ }
+
+ Transform {
+ id: groundTransform
+ translation: Qt.vector3d(0, -5, 0)
+ }
+
+ components: [
+ groundMesh,
+ groundTransform,
+ material
+ ]
+}