18 lines
225 B
QML
Raw Normal View History

import QtQuick 2.9
2021-05-25 17:18:56 +03:00
GraphicItem {
Behavior on color {
ColorAnimation {
duration: 2000
}
}
Behavior on radius {
NumberAnimation {
duration: 2000
}
}
}