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

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