[SOLVED]QML NumberAnimation - ease
-
Well, thank you for your answer, but if I want to rewrite this code:
@
import QtQuick 1.1
Grid {
move: Transition {
NumberAnimation {
properties: "x,y"
ease: "easeOutBounce" // this will not work
}
}
}
@
NumberAnimation.ease doesn't exist, what shall I do ? -
Did you just read the answer mbrasser gave you ?
There is no ease property, the property you need is easing and it's a grouped property.
Please first read the documentation before trying to work with animation :
[qdoc] http://qt-project.org/doc/qt-4.8/qml-propertyanimation.html#easing.type-prop[quote author="Peppy" date="1334817289"]Well, thank you for your answer, but if I want to rewrite this code:
@
import QtQuick 1.1
Grid {
move: Transition {
NumberAnimation {
properties: "x,y"
ease: "easeOutBounce" // this will not work
}
}
}
@
NumberAnimation.ease doesn't exist, what shall I do ?[/quote]