aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2011-07-29 16:55:22 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-29 09:39:51 +0200
commit12da09462a673d3948319d28ada42cb805b52130 (patch)
treedce0f5c5787d18f794037162fc2d0438c75743fa /doc/src
parent62917a96222ac8d3a391b0aefe2ee8905c8da874 (diff)
Document (lack of) support for sharing animation instances.
Task-number: QTBUG-19040 Change-Id: Iacbd16bdf48c95bc9e84cac3bd3f704c35a03707 Reviewed-on: http://codereview.qt.nokia.com/2381 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Bea Lam <bea.lam@nokia.com>
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/declarative/animation.qdoc33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/src/declarative/animation.qdoc b/doc/src/declarative/animation.qdoc
index 4ec1503bcf..ef01d14414 100644
--- a/doc/src/declarative/animation.qdoc
+++ b/doc/src/declarative/animation.qdoc
@@ -222,6 +222,39 @@ attributes such as \l {SpringAnimation::}{mass},
\o AnchorAnimation: used for animating an anchor change (see AnchorChanges)
\endlist
+\section1 Sharing Animation Instances
+
+Sharing animation instances between Transitions or Behaviors is not
+supported, and may lead to undefined behavior. In the following example,
+changes to the Rectangle's position will most likely not be correctly animated.
+
+\qml
+Rectangle {
+ // NOT SUPPORTED: this will not work correctly as both Behaviors
+ // try to control a single animation instance
+ NumberAnimation { id: anim; duration: 300; easing.type: Easing.InBack }
+ Behavior on x { animation: anim }
+ Behavior on y { animation: anim }
+}
+\endqml
+
+The easiest fix is to repeat the NumberAnimation for both Behaviors. If the repeated
+animation is rather complex, you might also consider creating a custom animation
+component and assigning an instance to each Behavior, for example:
+
+\qml
+// MyNumberAnimation.qml
+NumberAnimation { id: anim; duration: 300; easing.type: Easing.InBack }
+\endqml
+
+\qml
+// main.qml
+Rectangle {
+ Behavior on x { MyNumberAnimation {} }
+ Behavior on y { MyNumberAnimation {} }
+}
+\endqml
+
*/