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/HeartTrail.qml | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/quick3d/particles3d/HeartTrail.qml') diff --git a/examples/quick3d/particles3d/HeartTrail.qml b/examples/quick3d/particles3d/HeartTrail.qml index 659570af..d66e0c9c 100644 --- a/examples/quick3d/particles3d/HeartTrail.qml +++ b/examples/quick3d/particles3d/HeartTrail.qml @@ -30,6 +30,7 @@ Item { // Add some liveness to the light SequentialAnimation { loops: Animation.Infinite + running: true NumberAnimation { target: pointLight property: "animatedBrightness" -- cgit v1.2.3