aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/imageelements/spriteimage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/imageelements/spriteimage.qml')
-rw-r--r--examples/declarative/imageelements/spriteimage.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/imageelements/spriteimage.qml b/examples/declarative/imageelements/spriteimage.qml
index 71c897e138..97398ccaf5 100644
--- a/examples/declarative/imageelements/spriteimage.qml
+++ b/examples/declarative/imageelements/spriteimage.qml
@@ -48,9 +48,9 @@ Item {
}
SequentialAnimation {
id: anim
- ScriptAction { script: image.goalState = "falling"; }
+ ScriptAction { script: image.goalSprite = "falling"; }
NumberAnimation { target: image; property: "y"; to: 1480; duration: 12000; }
- ScriptAction { script: {image.goalState = ""; image.jumpTo("still");} }
+ ScriptAction { script: {image.goalSprite = ""; image.jumpTo("still");} }
PropertyAction { target: image; property: "y"; value: 0 }
}
SpriteImage {
@@ -59,7 +59,7 @@ Item {
height: 256
anchors.horizontalCenter: parent.horizontalCenter
interpolate: false
- goalState: ""
+ goalSprite: ""
Sprite{
name: "still"
source: "content/Bear0.png"