aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick3d/particles3d/HeartTrail.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/HeartTrail.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/HeartTrail.qml')
-rw-r--r--examples/quick3d/particles3d/HeartTrail.qml1
1 files changed, 1 insertions, 0 deletions
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"