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

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