mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-12 09:29:45 +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
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|