aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick3d/particles3d/OceanSpider.qml
diff options
context:
space:
mode:
authorKaj Grönholm <kaj.gronholm@qt.io>2023-11-15 13:29:44 +0200
committerKaj Grönholm <kaj.gronholm@qt.io>2023-11-16 13:05:11 +0200
commitec4ce11789eaafce091893246db59bfc4e6eb4b6 (patch)
tree722e920ec45b3c02ad2a7672fd0924845805aa1d /examples/quick3d/particles3d/OceanSpider.qml
parentf70bb03f9e47a5088114447dcfb9f3d09f9d37fd (diff)
Fix some particles example animations
QML animations with syntax "NumberAnimation on [x]" run automatically, while plain NumberAnimations don't. Since changes made in f7cc7656e2 we need to set these animations running. Pick-to: 6.6 Change-Id: I4df85f96f30be7520251911d0f8702118e1cf5c1 Reviewed-by: Jere Tuliniemi <jere.tuliniemi@qt.io> Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'examples/quick3d/particles3d/OceanSpider.qml')
-rw-r--r--examples/quick3d/particles3d/OceanSpider.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/quick3d/particles3d/OceanSpider.qml b/examples/quick3d/particles3d/OceanSpider.qml
index 2c0f203a..c8562240 100644
--- a/examples/quick3d/particles3d/OceanSpider.qml
+++ b/examples/quick3d/particles3d/OceanSpider.qml
@@ -20,6 +20,7 @@ Item {
// Animate tentacle movement
SequentialAnimation {
loops: Animation.Infinite
+ running: true
NumberAnimation {
target: mainWindow
property: "tentacleWideness"
@@ -161,6 +162,7 @@ Item {
fadeOutDuration: 800
billboard: true
SequentialAnimation {
+ running: true
loops: Animation.Infinite
ColorAnimation {
target: tentacleParticle