summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/deferred-renderer-qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/deferred-renderer-qml/main.qml')
-rw-r--r--examples/qt3d/deferred-renderer-qml/main.qml24
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/qt3d/deferred-renderer-qml/main.qml b/examples/qt3d/deferred-renderer-qml/main.qml
index c30c57fd4..d70619baa 100644
--- a/examples/qt3d/deferred-renderer-qml/main.qml
+++ b/examples/qt3d/deferred-renderer-qml/main.qml
@@ -138,14 +138,14 @@ Entity {
property Transform transform : Transform {
Translate{ dx: -10; dy: 0; dz : 5
id: sphere1Translate
- QQ2.SequentialAnimation {
- loops: QQ2.Animation.Infinite
- running: false
- QQ2.NumberAnimation {target: sphere1Translate; property: "dx"; to: 6; duration: 2000 }
- QQ2.NumberAnimation {target: sphere1Translate; property: "dx"; to: -10; duration: 2000 }
- }
}
}
+ QQ2.SequentialAnimation {
+ loops: QQ2.Animation.Infinite
+ running: false
+ QQ2.NumberAnimation {target: sphere1Translate; property: "dx"; to: 6; duration: 2000 }
+ QQ2.NumberAnimation {target: sphere1Translate; property: "dx"; to: -10; duration: 2000 }
+ }
property PointLight light : PointLight {
color : "green"
@@ -201,14 +201,14 @@ Entity {
property Transform transform : Transform {
Translate{ id: light3Translate; dx: 2; dy: 2; dz : 7
- QQ2.SequentialAnimation {
- loops: QQ2.Animation.Infinite
- running: true
- QQ2.NumberAnimation {target: light3Translate; property: "dy"; to: 6; duration: 1000; easing.type: QQ2.Easing.InOutQuad }
- QQ2.NumberAnimation {target: light3Translate; property: "dy"; to: -6; duration: 1000; easing.type: QQ2.Easing.InOutQuint }
- }
}
}
+ QQ2.SequentialAnimation {
+ loops: QQ2.Animation.Infinite
+ running: true
+ QQ2.NumberAnimation {target: light3Translate; property: "dy"; to: 6; duration: 1000; easing.type: QQ2.Easing.InOutQuad }
+ QQ2.NumberAnimation {target: light3Translate; property: "dy"; to: -6; duration: 1000; easing.type: QQ2.Easing.InOutQuint }
+ }
components: [
sphereMesh,