diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-03-01 12:51:24 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-03-01 12:51:24 (GMT) |
commit | 4f77d4f1bebba1627700037bdfce4e74ad84cce8 (patch) | |
tree | ad0db53e4ab064a625fb7c6cc7bf9042206056c8 /examples/declarative/tutorials/samegame/samegame4 | |
parent | bcb2ed5667bd957476e3b62ef3a479a26f1252f3 (diff) | |
download | Qt-4f77d4f1bebba1627700037bdfce4e74ad84cce8.zip Qt-4f77d4f1bebba1627700037bdfce4e74ad84cce8.tar.gz Qt-4f77d4f1bebba1627700037bdfce4e74ad84cce8.tar.bz2 |
Make SameGame tutorials share images
It's a bit of a waste to have four copies of all of the images. And as
an advanced tutorial throwing in a minor complication like this is
probably beneficial.
Additionally, the background has been replaced by a smaller JPEG
version.
Diffstat (limited to 'examples/declarative/tutorials/samegame/samegame4')
11 files changed, 7 insertions, 7 deletions
diff --git a/examples/declarative/tutorials/samegame/samegame4/content/BoomBlock.qml b/examples/declarative/tutorials/samegame/samegame4/content/BoomBlock.qml index 4c2ba43..85c2c93 100644 --- a/examples/declarative/tutorials/samegame/samegame4/content/BoomBlock.qml +++ b/examples/declarative/tutorials/samegame/samegame4/content/BoomBlock.qml @@ -16,11 +16,11 @@ Item { id:block Image { id: img source: { if(type == 0){ - "pics/redStone.png"; + "../../shared/pics/redStone.png"; } else if(type == 1) { - "pics/blueStone.png"; + "../../shared/pics/blueStone.png"; } else { - "pics/greenStone.png"; + "../../shared/pics/greenStone.png"; } } opacity: 0 @@ -38,11 +38,11 @@ Item { id:block velocity: 100; velocityDeviation:30; source: { if(type == 0){ - "pics/redStar.png"; + "../../shared/pics/redStar.png"; } else if (type == 1) { - "pics/blueStar.png"; + "../../shared/pics/blueStar.png"; } else { - "pics/greenStar.png"; + "../../shared/pics/greenStar.png"; } } } diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/background.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/background.png Binary files differdeleted file mode 100644 index 3734a27..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/background.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStar.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStar.png Binary files differdeleted file mode 100644 index ff9588f..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStar.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStone.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStone.png Binary files differdeleted file mode 100644 index 20e43c7..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/blueStone.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStar.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStar.png Binary files differdeleted file mode 100644 index cd06854..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStar.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStone.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStone.png Binary files differdeleted file mode 100644 index b568a19..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/greenStone.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/redStar.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/redStar.png Binary files differdeleted file mode 100644 index 0a4dffe..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/redStar.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/redStone.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/redStone.png Binary files differdeleted file mode 100644 index 36b09a2..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/redStone.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/star.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/star.png Binary files differdeleted file mode 100644 index defbde5..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/star.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/content/pics/yellowStone.png b/examples/declarative/tutorials/samegame/samegame4/content/pics/yellowStone.png Binary files differdeleted file mode 100644 index b1ce762..0000000 --- a/examples/declarative/tutorials/samegame/samegame4/content/pics/yellowStone.png +++ /dev/null diff --git a/examples/declarative/tutorials/samegame/samegame4/samegame.qml b/examples/declarative/tutorials/samegame/samegame4/samegame.qml index a228e60..c2e8018 100644 --- a/examples/declarative/tutorials/samegame/samegame4/samegame.qml +++ b/examples/declarative/tutorials/samegame/samegame4/samegame.qml @@ -12,7 +12,7 @@ Rectangle { Image { id: background - anchors.fill: parent; source: "content/pics/background.png" + anchors.fill: parent; source: "../shared/pics/background.jpg" fillMode: Image.PreserveAspectCrop } |