summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/qt3d/shadow-map-qml/main.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/qt3d/shadow-map-qml/main.qml b/examples/qt3d/shadow-map-qml/main.qml
index d42401f60..9ed66dcbf 100644
--- a/examples/qt3d/shadow-map-qml/main.qml
+++ b/examples/qt3d/shadow-map-qml/main.qml
@@ -37,6 +37,7 @@
import QtQuick 2.1 as QQ2
import Qt3D.Core 2.0
import Qt3D.Render 2.0
+import Qt3D.Input 2.0
Entity {
id: sceneRoot
@@ -64,7 +65,9 @@ Entity {
id: framegraph
viewCamera: camera
lightCamera: light.lightCamera
- }
+ },
+ // Event Source will be set by the Qt3DQuickWindow
+ InputSettings { }
]