summaryrefslogtreecommitdiffstats
path: root/demos/declarative/snake/content/Skull.qml
blob: 2af8b2ff257c0f5bf7af7fec640e7a216867a26b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Qt 4.7

Image {
    property bool spawned: false
    property int row;
    property int column;
    property int verticalMovement;
    property int horizontalMovement;

    x: margin + column * gridSize + 2
    y: margin + row * gridSize - 3
    Behavior on x { NumberAnimation { duration: spawned ? halfbeatInterval : 0} }
    Behavior on y { NumberAnimation { duration: spawned ? halfbeatInterval : 0 } }

    opacity: spawned ? 1 : 0
    Behavior on opacity { NumberAnimation { duration: 200 } }

    source: "pics/skull.png"
    width: 24
    height: 40
}