aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimatedsprite/data/finishBehavior.qml
blob: 13a0ef46227f1bc6cfb51fcbea7f1bba992587b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.15

Rectangle {
    color: "black"
    width: 320
    height: 320

    AnimatedSprite {
        objectName: "sprite"
        loops: 1
        source: "squarefacesprite.png"
        frameCount: 6
        frameDuration: 64
        width: 160
        height: 160
        finishBehavior: AnimatedSprite.FinishAtFinalFrame
    }
}