aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/librarymetrics_performance/data/animations.4.qml
blob: 877cf4dd14ae33488cd02a5ca89d9802e66bcd41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Item {
    id: root
    property real a: 50
    SequentialAnimation {
        id: anim
        ScriptAction { script: root.a += 5; }
        ScriptAction { script: root.a += 15; }
    }

    Component.onCompleted: {
        anim.start();
    }
}