diff options
Diffstat (limited to 'demos/declarative/samegame/content/SpinBlock.qml')
-rw-r--r-- | demos/declarative/samegame/content/SpinBlock.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/declarative/samegame/content/SpinBlock.qml b/demos/declarative/samegame/content/SpinBlock.qml index 6737196..42276d0 100644 --- a/demos/declarative/samegame/content/SpinBlock.qml +++ b/demos/declarative/samegame/content/SpinBlock.qml @@ -2,6 +2,7 @@ Item { id:block //Note: These properties are the interface used to control the blocks property bool dying: false property bool spawned: false + property bool selected: false property int type: 0 property int targetY: 0 property int targetX: 0 @@ -14,6 +15,7 @@ Item { id:block } else { "pics/gnome/greenStone.gif"; } + playing: selected } opacity: 0 y: targetY |