summaryrefslogtreecommitdiffstats
path: root/examples/declarative/minehunt/Explosion.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/minehunt/Explosion.qml')
-rw-r--r--examples/declarative/minehunt/Explosion.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/minehunt/Explosion.qml b/examples/declarative/minehunt/Explosion.qml
index b1fe848..9b8bd6e 100644
--- a/examples/declarative/minehunt/Explosion.qml
+++ b/examples/declarative/minehunt/Explosion.qml
@@ -20,9 +20,9 @@ Item {
streamIn: false
}
states: [ State { name: "exploding"; when: explode == true
- SetProperties { target: particles; count: 200 }
- SetProperties { target: particles; opacity: 1 }
- SetProperties { target: particles; emitting: false } // i.e. emit only once
+ PropertyChanges { target: particles; count: 200 }
+ PropertyChanges { target: particles; opacity: 1 }
+ PropertyChanges { target: particles; emitting: false } // i.e. emit only once
}
]