mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
18 lines
225 B
QML
18 lines
225 B
QML
import QtQuick 2.9
|
|
|
|
GraphicItem {
|
|
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: 2000
|
|
}
|
|
}
|
|
|
|
Behavior on radius {
|
|
NumberAnimation {
|
|
duration: 2000
|
|
}
|
|
}
|
|
|
|
}
|