summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/planets-qml/SolarSystem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/planets-qml/SolarSystem.qml')
-rw-r--r--examples/qt3d/planets-qml/SolarSystem.qml11
1 files changed, 3 insertions, 8 deletions
diff --git a/examples/qt3d/planets-qml/SolarSystem.qml b/examples/qt3d/planets-qml/SolarSystem.qml
index d34627735..515e2d8d7 100644
--- a/examples/qt3d/planets-qml/SolarSystem.qml
+++ b/examples/qt3d/planets-qml/SolarSystem.qml
@@ -35,7 +35,7 @@
****************************************************************************/
import Qt3D 2.0
-import Qt3D.Render 2.0
+import Qt3D.Renderer 2.0
import QtQuick 2.0 as QQ2
import "planets.js" as Planets
@@ -44,7 +44,6 @@ Entity {
id: sceneRoot
property bool ready: false
- property bool freeCamera: false
property real cameraNear: 0
property real xLookAtOffset: 0
@@ -120,7 +119,7 @@ Entity {
}
components: [
- ShadowMapFrameGraph {
+ PlanetFrameGraph {
id: framegraph
viewCamera: camera
lightCamera: light.lightCamera
@@ -231,10 +230,6 @@ Entity {
checkScaling(focusedPlanet)
}
- function setFreeCamera(free) {
- freeCamera = free
- }
-
function setScale(value, focused) {
// Save actual scale
if (!focused)
@@ -414,7 +409,7 @@ Entity {
//! [3]
function animate(focusedPlanet) {
- if (!ready || freeCamera)
+ if (!ready)
return
advanceTime(focusedPlanet)