aboutsummaryrefslogtreecommitdiffstats
path: root/GUIModel/Meter/Meter.qml
diff options
context:
space:
mode:
Diffstat (limited to 'GUIModel/Meter/Meter.qml')
-rw-r--r--GUIModel/Meter/Meter.qml66
1 files changed, 0 insertions, 66 deletions
diff --git a/GUIModel/Meter/Meter.qml b/GUIModel/Meter/Meter.qml
index 1c7c0fe..7c2d5dd 100644
--- a/GUIModel/Meter/Meter.qml
+++ b/GUIModel/Meter/Meter.qml
@@ -40,9 +40,6 @@ Item {
Item {
id: meterParts
property var easing: Easing.InOutQuad
- Component.onCompleted: {
- testAnim.start()
- }
Connections{
target: rootItem
@@ -86,69 +83,6 @@ Item {
DigitalSpeed {
id: digitalSpeed
}
-
- ParallelAnimation{
- id: testAnim
- SequentialAnimation{
- id: testAnimSpeed
- loops: Animation.Infinite
- NumberAnimation {
- target: meter
- property: "speedValue"
- duration: 1000
- easing.type: Easing.InOutQuad
- to: 300
- }
- NumberAnimation{
- duration: 5000
- }
-
- NumberAnimation {
- target: meter
- property: "speedValue"
- duration: 5000
- easing.type: Easing.InOutQuad
- to: 0
- }
- }
-
- SequentialAnimation{
- id: testAnimTacho
- loops: Animation.Infinite
- NumberAnimation {
- target: meter
- property: "tachoValue"
- duration: 500
- easing.type: Easing.InOutQuad
- to: 8000
- }
- NumberAnimation {
- target: meter
- property: "tachoValue"
- duration: 2500
- easing.type: Easing.InOutQuad
- to: 0
- }
- }
- SequentialAnimation{
- id: testAnimCharge
- loops: Animation.Infinite
- NumberAnimation {
- target: meter
- property: "chargeValue"
- duration: 10000
- easing.type: Easing.Linear
- to: 0
- }
- NumberAnimation {
- target: meter
- property: "chargeValue"
- duration: 10000
- easing.type: Easing.Linear
- to: 100
- }
- }
- }
}
}