mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 11:13:09 +02:00
20 lines
No EOL
343 B
QML
20 lines
No EOL
343 B
QML
import QtQuick 2.6
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
import QtGraphicalEffects 1.0
|
|
|
|
Image {
|
|
id: root
|
|
|
|
width: 128
|
|
height: 128
|
|
|
|
source: "../../../images/loader-snake-128.png"
|
|
|
|
RotationAnimation on rotation {
|
|
duration: 2000
|
|
loops: Animation.Infinite
|
|
from: 0
|
|
to: 360
|
|
}
|
|
} |