From ec4ce11789eaafce091893246db59bfc4e6eb4b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaj=20Gr=C3=B6nholm?= Date: Wed, 15 Nov 2023 13:29:44 +0200 Subject: 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 Reviewed-by: Andy Nichols --- examples/quick3d/particles3d/OceanSpider.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples/quick3d/particles3d/OceanSpider.qml') 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 -- cgit v1.2.3