简体   繁体   中英

Qt animation with double values

I'm animating the value transition in a gauge

CircularGauge {
    onValueChanged: {
        console.info('val' , value)
    }

    Behavior on value {
        RotationAnimation {
            duration: 20000
        }
    }
}

But the animation only happens in steps of 1. I did not find a way to make them do smaller steps.

Is there a way?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM