次のようなアニメーションを停止したい:
Behavior on x {
NumberAnimation {
id: animationElement
duration: 100
}
}
...
if (something)
{
animationElement.stop()
}
しかし、このコードは私にエラーを与えます、そのstop()は非ルートアニメーションノードでは使用できません。外からのアニメーションを止めているのでは?